Tests/Message/GetClassifierRequestTest.php 1 location
|
@@ 26-36 (lines=11) @@
|
23 |
|
private $version = '2015-12-02'; |
24 |
|
private $classifierId = 'Magenta'; |
25 |
|
|
26 |
|
public function setUp() |
27 |
|
{ |
28 |
|
$this->config = array( |
29 |
|
'username' => $this->username, |
30 |
|
'password' => $this->password, |
31 |
|
'version' => $this->version |
32 |
|
); |
33 |
|
|
34 |
|
$this->client = new Client(); |
35 |
|
$this->client->initialize($this->config); |
36 |
|
} |
37 |
|
|
38 |
|
/** |
39 |
|
* Test that params are as expected |
Tests/Message/GetClassifiersRequestTest.php 1 location
|
@@ 25-35 (lines=11) @@
|
22 |
|
private $password = 'password'; |
23 |
|
private $version = '2015-12-02'; |
24 |
|
|
25 |
|
public function setUp() |
26 |
|
{ |
27 |
|
$this->config = array( |
28 |
|
'username' => $this->username, |
29 |
|
'password' => $this->password, |
30 |
|
'version' => $this->version |
31 |
|
); |
32 |
|
|
33 |
|
$this->client = new Client(); |
34 |
|
$this->client->initialize($this->config); |
35 |
|
} |
36 |
|
|
37 |
|
/** |
38 |
|
* Test that params are as expected |
Tests/Message/DeleteClassifierRequestTest.php 1 location
|
@@ 27-37 (lines=11) @@
|
24 |
|
private $version = '2015-12-02'; |
25 |
|
private $classifierId = 'Magenta'; |
26 |
|
|
27 |
|
public function setUp() |
28 |
|
{ |
29 |
|
$this->config = array( |
30 |
|
'username' => $this->username, |
31 |
|
'password' => $this->password, |
32 |
|
'version' => $this->version |
33 |
|
); |
34 |
|
|
35 |
|
$this->client = new Client(); |
36 |
|
$this->client->initialize($this->config); |
37 |
|
} |
38 |
|
|
39 |
|
/** |
40 |
|
* Test that params are as expected |