public function testReadRows()
 {
     $this->markTestSkipped('To test in real environment, edit this test');
     //query class, e.g. UsersQuery
     $query = \Propel\Runtime\ActiveQuery\ModelCriteria::class;
     $this->persistenceModel->query = $this->createMock($query);
     $rows = \Propel\Runtime\Collection\ObjectCollection::class;
     $this->assertInstanceOf($rows, $this->persistenceModel->readRows());
 }