| 1 | <?php |
||
| 5 | class Base64Test extends \PHPUnit_Framework_TestCase |
||
| 6 | { |
||
| 7 | private static $value = 'føøbarbaz'; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var Base64 |
||
| 11 | */ |
||
| 12 | private $defaultEncoding; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var Base64 |
||
| 16 | */ |
||
| 17 | private $nonDefaultEncoding; |
||
| 18 | |||
| 19 | public function setUp() |
||
| 24 | |||
| 25 | public function testEncode() |
||
| 30 | |||
| 31 | public function testDecode() |
||
| 36 | } |
||
| 37 |