1 | <?php |
||
5 | class AudienceTest extends \PHPUnit_Framework_TestCase |
||
6 | { |
||
7 | private static $name = 'aud'; |
||
8 | private static $value = 'foobar'; |
||
9 | |||
10 | /** |
||
11 | * @var Audience |
||
12 | */ |
||
13 | private $claim; |
||
14 | |||
15 | public function setUp() |
||
19 | |||
20 | public function testGetName() |
||
24 | |||
25 | public function testGetValue() |
||
29 | |||
30 | public function testStringValue() |
||
37 | |||
38 | public function testArrayValue() |
||
43 | } |
||
44 |