Example #1
0
 /**
  * @test
  */
 public function hasPropertyTest()
 {
     $this->assertTrue($this->fixture->hasProperty('property1'));
     $this->assertTrue($this->fixture->hasProperty('property2'));
     $this->assertTrue($this->fixture->hasProperty('property3'));
     $this->assertTrue($this->fixture->hasProperty('property4'));
     $this->assertTrue($this->fixture->hasProperty('property5'));
     $this->assertTrue($this->fixture->hasProperty('property6'));
     $this->assertTrue($this->fixture->hasProperty('property_seven'));
     $this->assertTrue($this->fixture->hasProperty('property_eight'));
     $this->assertFalse($this->fixture->hasProperty('propertyNotExists'));
 }