diff --git a/src/Collection.php b/src/Collection.php index a90cb99..5b1a96d 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -70,7 +70,6 @@ class Collection curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($ch); - // var_dump($response); } /** diff --git a/tests/CollectionTest.php b/tests/CollectionTest.php new file mode 100644 index 0000000..0284f51 --- /dev/null +++ b/tests/CollectionTest.php @@ -0,0 +1,16 @@ +getList(1,10); + + $this->assertSame($expected, $actual); + } +}