ArticleCestTest.php 408 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2019-08-02 00:25
  7. */
  8. namespace api\tests\unit\models;
  9. use api\models\Article;
  10. class ArticleCestTest extends \Codeception\Test\Unit
  11. {
  12. public function testFields()
  13. {
  14. $model = new Article();
  15. expect("api article model fields should have title", $model->fields())->contains("title");
  16. }
  17. }