. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Test harness for the class RegisterOfEngland1939 */ class RegisterOfEngland1939Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\RegisterOfEngland1939 * * @return void */ public function testPlaceAndDate() { $census = new RegisterOfEngland1939; $this->assertSame('England', $census->censusPlace()); $this->assertSame('29 SEP 1939', $census->censusDate()); } /** * Test the census columns * * @covers \Fisharebest\Webtrees\Census\RegisterOfEngland1939 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn * * @return void */ public function testColumns() { $census = new RegisterOfEngland1939; $columns = $census->columns(); $this->assertCount(8, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[1]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSurnameGivenNames', $columns[2]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSexMF', $columns[4]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthDayMonthSlashYear', $columns[5]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionEnglish', $columns[6]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $columns[7]); $this->assertSame('Schedule', $columns[0]->abbreviation()); $this->assertSame('SubNum', $columns[1]->abbreviation()); $this->assertSame('Name', $columns[2]->abbreviation()); $this->assertSame('Role', $columns[3]->abbreviation()); $this->assertSame('Sex', $columns[4]->abbreviation()); $this->assertSame('DOB', $columns[5]->abbreviation()); $this->assertSame('MC', $columns[6]->abbreviation()); $this->assertSame('Occupation', $columns[7]->abbreviation()); $this->assertSame('Schedule Number', $columns[0]->title()); $this->assertSame('Schedule Sub Number', $columns[1]->title()); $this->assertSame('Surname & other names', $columns[2]->title()); $this->assertSame('For institutions only – for example, Officer, Visitor, Servant, Patient, Inmate', $columns[3]->title()); $this->assertSame('Male or Female', $columns[4]->title()); $this->assertSame('Date of birth', $columns[5]->title()); $this->assertSame('Marital Condition - Married, Single, Unmarried, Widowed or Divorced', $columns[6]->title()); $this->assertSame('Occupation', $columns[7]->title()); } }