12345678910111213141516171819202122232425262728 |
- <?php
- use Fr\RetailMeNot\Cloud\StateMachine\Example as Example;
- /**
- * ExampleTest
- * @author Yannick Guern
- * @copyright RetailMeNot Inc.
- * @package fr.retailmenot.state_machine
- * @version 1.0.0
- */
- class ExampleTest extends PHPUnit_Framework_TestCase {
- private $client;
- public function setUp() {
- $this->client = new Example();
- }
- public function testNotNull() {
- $this->assertNotNull($this->client);
- }
- }
|