Ejemplo n.º 1
0
 public function testDatastoreAutoConstruct()
 {
     $connection = new PdoConnection();
     $resolver = new DalResolver();
     $resolver->boot();
     $resolver->addConnection('mockql', $connection);
     $mock = new MockQlDao();
     $this->assertSame($connection, $mock->getDataStore()->getConnection());
     $resolver->shutdown();
 }