testThatValidMeetingsCanBeInstantiated() { 3. $this->assertInstanceOf(Meeting::class, 4. new Meeting( 5. Uuid::uuid4(), 6. 'This is a test', 7. 'This is a test description', 8. 'M01', 9. new MeetingDuration( 10. new DateTimeImmutable('2018-02-20 19:00'), 11. new DateTimeImmutable('2018-02-20 22:00') 12. ), 13. false, 14. 'This is a test sub title', 15. new Program([]) 16. ) 17. ); 18. } 19. } $ vendor/bin/phpunit -c phpunit.xml.dist tests/ PHPUnit 5.7.27 by Sebastian Bergmann and contributors. ........ 8 / 8 (100%) Time: 25 ms, Memory: 4.00MB OK (8 tests, 8 assertions)