1 | <?php |
||
13 | class PageTest extends \PHPUnit_Framework_TestCase |
||
14 | { |
||
15 | /** @var \Jms\Serializer\Serializer */ |
||
16 | private $serializer; |
||
17 | |||
18 | /** |
||
19 | * Register the auto loader and build the serializer class we need |
||
20 | */ |
||
21 | public function setUp() |
||
30 | |||
31 | /** |
||
32 | * Unset the serializer after use |
||
33 | */ |
||
34 | public function tearDown() |
||
38 | |||
39 | /** |
||
40 | * Test to make sure that strings work |
||
41 | */ |
||
42 | public function testSuccessfulDeserialization() |
||
60 | |||
61 | /** |
||
62 | * Test to make sure that strings work |
||
63 | */ |
||
64 | public function testSuccessfulSerialization() |
||
79 | } |
||
80 |