Example #1
0
 /**
  * @covers Yosmanyga\Resource\Definition\Definition::export
  */
 public function testExport()
 {
     $definition = new Definition();
     $definition->foo2 = 'bar2';
     $this->assertEquals(array('foo2' => 'bar2'), $definition->export());
 }