Ejemplo n.º 1
0
 /**
  * @param DriverInterface $driver
  *
  * @dataProvider getDrivers
  */
 public function testBalanceChecking(DriverInterface $driver)
 {
     $connection = new Connection($driver, 'demo', 'demo', Connection::TEST_SPECIAL);
     $this->assertTrue($connection->verify());
     $this->assertGreaterThan(0, $connection->getBalance());
 }