Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. image: edbizarro/bitbucket-pipelines-php7
  2.  
  3. pipelines:
  4. branches:
  5. master:
  6. - step:
  7. caches:
  8. - composer
  9. script:
  10. - composer install --no-interaction --no-progress --prefer-dist
  11. - composer test
  12. - composer deploy-to-production
  13.  
  14. <?php
  15. namespace AppTestTestCaseController;
  16.  
  17. use AppControllerCustomersController;
  18. use CakeTestSuiteIntegrationTestTrait;
  19. use CakeTestSuiteTestCase;
  20.  
  21. class CustomersControllerTest extends TestCase
  22. {
  23. use IntegrationTestTrait;
  24.  
  25. public $fixtures = [
  26. 'app.Customers',
  27. 'app.Orders'
  28. ];
  29.  
  30. public function testIndex()
  31. {
  32. $this->markTestIncomplete('Not implemented yet.');
  33. }
  34.  
  35. public function testView()
  36. {
  37. $this->markTestIncomplete('Not implemented yet.');
  38. }
  39.  
  40. public function testAdd()
  41. {
  42. $this->markTestIncomplete('Not implemented yet.');
  43. }
  44.  
  45. public function testEdit()
  46. {
  47. $this->markTestIncomplete('Not implemented yet.');
  48. }
  49.  
  50. public function testDelete()
  51. {
  52. $this->markTestIncomplete('Not implemented yet.');
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement