public function testReverse()
 {
     $old_zcl = ConfigureReportingResponseCommand::construct([AttributeStatusRecord::construct(ZCLStatus::UNREPORTABLE_ATTRIBUTE, AttributeReportingConfigurationStatusRecord::DIRECTION_SERVER_TO_CLIENT, 0x1234), AttributeStatusRecord::construct(ZCLStatus::CALIBRATION_ERROR, AttributeReportingConfigurationStatusRecord::DIRECTION_SERVER_TO_CLIENT, 0x4567)]);
     $old_zcl_frame = $old_zcl->getFrame();
     $new = new ConfigureReportingResponseCommand($old_zcl_frame);
     $this->assertEquals($old_zcl_frame, $new->getFrame());
 }