Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. require_once '../vendor/autoload.php';
  3.  
  4. class NewCardCommandTest extends PHPUnit\Framework\TestCase {
  5.    
  6.     /**
  7.      * Tests if the name gets set correctly in the configure function.
  8.      */
  9.     public function testConfigure() {
  10.         $name = $this->setName('testName');
  11.        
  12.         $this->assertEquals('testName', $name);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement