public function testEndian() { $this->int32->setEndianBig('X'); $this->assertEquals('X', $this->int32->getEndianBig()); $this->int32->setEndianLittle('Y'); $this->assertEquals('Y', $this->int32->getEndianLittle()); }
/** * @return int */ public function readUInt32() { return $this->int32Reader->read($this); }