Advertisement
gorkamu

IBaseTestCase - Interface para Test en PHPUnit

Apr 26th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Created by JetBrains PhpStorm.
  4.  * User: gorka
  5.  * Date: 3/01/14
  6.  * Time: 7:33
  7.  */
  8. namespace Modelo\BLBundle\Tests\Controller;
  9.  
  10. /**
  11.  * Class IBaseTestCase
  12.  * @package Modelo\BLBundle\Tests\Controller
  13.  */
  14. interface IBaseTestCase
  15. {
  16.     public function testSave();
  17.  
  18.     public function testDelete();
  19.  
  20.     public function testUpdate();
  21.  
  22.     public function testFindAll();
  23.  
  24.     public function testFindById();
  25.  
  26.     public function testFindFirst();
  27.  
  28.     public function testFindLatest();
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement