Example.php 451 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use Fr\RetailMeNot\Cloud\StateMachine\Example as Example;
  3. /**
  4. * ExampleTest
  5. * @author Yannick Guern
  6. * @copyright RetailMeNot Inc.
  7. * @package fr.retailmenot.state_machine
  8. * @version 1.0.0
  9. */
  10. class ExampleTest extends PHPUnit_Framework_TestCase {
  11. private $client;
  12. public function setUp() {
  13. $this->client = new Example();
  14. }
  15. public function testNotNull() {
  16. $this->assertNotNull($this->client);
  17. }
  18. }