コード例 #1
0
 /**
  * @test
  */
 public function is_not_same_value_as()
 {
     $structureItem = new StructureItem('a.path.with.key', StructureDefinition::STRING);
     $otherStructureItem = new StructureItem('a.path.with.key', StructureDefinition::BOOLEAN);
     $this->assertFalse($structureItem->sameValueAs($otherStructureItem));
 }