1 | <?php |
||
16 | class PolynomialTest extends \PHPUnit_Framework_TestCase{ |
||
17 | |||
18 | /** |
||
19 | * @var \chillerlan\QRCode\Polynomial |
||
20 | */ |
||
21 | protected $polynomial; |
||
22 | |||
23 | protected function setUp(){ |
||
26 | |||
27 | public function testGexp(){ |
||
32 | |||
33 | /** |
||
34 | * @expectedException \chillerlan\QRCode\QRCodeException |
||
35 | * @expectedExceptionMessage log(0) |
||
36 | */ |
||
37 | public function testGlogException(){ |
||
40 | } |
||
41 |