Advertisement
repente

Untitled

May 23rd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Mos\Guess;
  4.  
  5. use PHPUnit\Framework\TestCase;
  6.  
  7. /**
  8. * Test cases for class Guess.
  9. */
  10. class GuessCreateObjectTests extends TestCase
  11. {
  12.  
  13. public function testException()
  14. {
  15. $this->expectException(GuessException::class);
  16. }
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement