CurlTest.php 403 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Class CurlTest
  4. */
  5. class CurlTest extends \Codeception\Test\Unit
  6. {
  7. // ################################################### Class methods ###############################################
  8. /**
  9. * No sense test
  10. */
  11. public function testInit()
  12. {
  13. $curl = new linslin\yii2\curl\Curl();
  14. expect($curl instanceof linslin\yii2\curl\Curl)->equals(true);
  15. }
  16. }