/**
  * @covers ::fromObject
  */
 public function testCanStaticallyGetObjectType()
 {
     // ----------------------------------------------------------------
     // setup your test
     $data = new SimpleType();
     $expectedType = SimpleType::class;
     // ----------------------------------------------------------------
     // perform the change
     $actualType = SimpleType::fromObject($data);
     // ----------------------------------------------------------------
     // test the results
     $this->assertEquals($expectedType, $actualType);
 }