/**
  * @covers ::__construct
  * @covers ::inspectList
  * @covers ::toList
  * @covers ::to
  */
 public function testCanUseAsObject()
 {
     // ----------------------------------------------------------------
     // setup your test
     $checks = [new RequireValidChecksTest_IsNumeric(), new RequireValidChecksTest_IsString(), new RequireValidChecksTest_IsType('string')];
     // ----------------------------------------------------------------
     // perform the change
     $unit = new RequireValidChecks();
     $unit->inspectList($checks);
     // ----------------------------------------------------------------
     // test the results
     //
     // we use a simple assertion here so that this doesn't get flagged
     // as a 'useless' test
     $this->assertTrue(true);
 }