takeATrip(); $this->assertEquals( ['Buy a flight ticket', 'Taking the plane', 'Swimming and sun-bathing', 'Taking the plane'], $beachJourney->getThingsToDo() ); } public function testCanGetOnAJourneyToACity() { $beachJourney = new TemplateMethod\CityJourney(); $beachJourney->takeATrip(); $this->assertEquals( [ 'Buy a flight ticket', 'Taking the plane', 'Eat, drink, take photos and sleep', 'Buy a gift', 'Taking the plane' ], $beachJourney->getThingsToDo() ); } }