fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit'); $this->header = $this->fits->header(); $blob = $this->fits->imageBlob; $this->imageBlob = new Dumbastro\FitsPhp\ImageBlob($this->header, $blob); } public function testBitpixValue(): void { $this->assertSame($this->imageBlob->bitpix->value, 16); } public function testDataBitsLength(): void { $this->assertSame($this->imageBlob->dataBits, 16*2448*1669); } }