swarfile = getcwd() . $this->swarfile; $this->testobject = new Swar5(); $this->testobject->read($this->swarfile); } public function testReadTournamentName(): void { $this->assertEquals('Blackbird Chess Unit Test Tournament', $this->testobject->Tournament->Name); } public function testReadTournamentOrganiser(): void { $this->assertEquals('Blackbird Chess Developers', $this->testobject->Tournament->Organiser); } public function testReadTournamentLocation(): void { $this->assertEquals('Waregem', $this->testobject->Tournament->OrganiserPlace); } public function testHas8Players(): void { $this->assertCount(8, $this->testobject->Tournament->Players); } public function testHas7Rounds(): void { $this->assertCount(7, $this->testobject->Tournament->Rounds); } }