assertNotNull($obj); $this->assertNotNull($obj->getBankAccounts()); $this->assertNotNull($obj->getCount()); $this->assertNotNull($obj->getNextId()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param BankAccountsList $obj */ public function testGetters($obj) { $this->assertEquals($obj->getBankAccounts(), BankAccountTest::getObject()); $this->assertEquals($obj->getCount(), 123); $this->assertEquals($obj->getNextId(), "TestSample"); } }