Inheritance: extends PHPUnit_Framework_TestCase
 /**
  * @depends testSerializationDeserialization
  * @param WebProfile $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getId(), "TestSample");
     $this->assertEquals($obj->getName(), "TestSample");
     $this->assertEquals($obj->getFlowConfig(), FlowConfigTest::getObject());
     $this->assertEquals($obj->getInputFields(), InputFieldsTest::getObject());
     $this->assertEquals($obj->getPresentation(), PresentationTest::getObject());
 }