Пример #1
0
 /**
  * @covers ::defaultConfiguration
  */
 public function testDefaultConfiguration()
 {
     $configuration = array('currency_code' => NULL, 'name' => NULL, 'quantity' => 1, 'amount' => 0, 'description' => NULL);
     $this->assertEquals($configuration, $this->sut->defaultConfiguration());
 }
 /**
  * @covers ::defaultConfiguration
  */
 public function testDefaultConfiguration()
 {
     $default_configuration = array('name' => NULL, 'quantity' => 1);
     $this->assertSame($default_configuration, $this->sut->defaultConfiguration());
 }