コード例 #1
0
 public function testGetSetEntityCode()
 {
     $expected = uniqid('E');
     $this->assertEmpty($this->instance->getEntityCode());
     $this->assertInstanceOf(County::class, $this->instance->setEntityCode($expected));
     $this->assertEquals($expected, $this->instance->getEntityCode());
 }