kernel = new Linear(); } /** * @test */ public function build() : void { $this->assertInstanceOf(Linear::class, $this->kernel); $this->assertInstanceOf(Kernel::class, $this->kernel); } /** * @test */ public function options() : void { $expected = [102 => 0]; $this->assertEquals($expected, $this->kernel->options()); } }