Ejemplo n.º 1
0
 public function testConstructor()
 {
     $iban = new Iban("BE");
     $this->assertEquals("BE", $iban->getIban());
     $iban = new Iban("BE", "BIC");
     $this->assertEquals("BIC", $iban->getBic());
 }