fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit'); $this->header = new Dumbastro\FitsPhp\FitsHeader($this->fits->headerBlock); } public function testKeywordValues(): void { $this->assertSame( trim($this->header->getKeywordValue('BITPIX')), '16' ); $this->assertSame( trim($this->header->getKeywordValue('NAXIS')), '3' ); $this->assertSame( trim($this->header->getKeywordValue('STACKCNT')), '86' ); } }