Beispiel #1
0
 /**
  * Test Enom constructor
  *
  * @covers SOG\EnomBundle\Services\Enom::__construct
  */
 public function testEnomConstruct()
 {
     $enom = new Enom('https://reseller.enom.com', 'reseller_uid', 'reseller_pw');
     $this->assertEquals('https://reseller.enom.com', $enom->getUrl());
     $this->assertEquals('reseller_uid', $enom->getUsername());
     $this->assertEquals('reseller_pw', $enom->getPassword());
 }