. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\TestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(CensusOfRhodeIsland::class)] class CensusOfRhodeIslandTest extends TestCase { /** * Test the census place */ public function testPlace(): void { $census = new CensusOfRhodeIsland(); self::assertSame('Rhode Island, United States', $census->censusPlace()); } /** * Test the census language */ public function testLanguage(): void { $census = new CensusOfRhodeIsland(); self::assertSame('en-US', $census->censusLanguage()); } /** * Test the census dates */ public function testAllDates(): void { $census = new CensusOfRhodeIsland(); $census_dates = $census->allCensusDates(); self::assertCount(3, $census_dates); self::assertInstanceOf(CensusOfRhodeIsland1905::class, $census_dates[0]); self::assertInstanceOf(CensusOfRhodeIsland1915::class, $census_dates[1]); self::assertInstanceOf(CensusOfRhodeIsland1925::class, $census_dates[2]); } }