* @copyright 2015 Smiley * @license MIT */ namespace chillerlan\QRCodeTest\Helpers; use chillerlan\QRCode\Helpers\Polynomial; use chillerlan\QRCode\QRCodeException; use chillerlan\QRCodeTest\QRTestAbstract; class PolynomialTest extends QRTestAbstract{ /** * @var \chillerlan\QRCode\Helpers\Polynomial */ protected $polynomial; protected function setUp():void{ $this->polynomial = new Polynomial; } public function testGexp(){ $this->assertSame(142, $this->polynomial->gexp(-1)); $this->assertSame(133, $this->polynomial->gexp(128)); $this->assertSame(2, $this->polynomial->gexp(256)); } public function testGlogException(){ $this->expectException(QRCodeException::class); $this->expectExceptionMessage('log(0)'); $this->polynomial->glog(0); } }