1 | <?php |
||
3 | class correiosTest extends PHPUnit_Framework_TestCase { |
||
|
|||
4 | |||
5 | /** |
||
6 | * Testa o construtor da classe |
||
7 | */ |
||
8 | public function testConstructClass() |
||
12 | |||
13 | public function testGetContent() |
||
18 | |||
19 | public function testGetOrderShippingCostSEDEXHoje() |
||
23 | |||
24 | public function testGetOrderShippingCostSEDEX10() |
||
28 | |||
29 | public function testGetOrderShippingCostSEDEX() |
||
33 | |||
34 | public function testGetOrderShppingCost($id_carrier = "1", $shipping_cost = 10, $expected_value = 16.1) |
||
42 | } |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.