public function testMatcherMatchesVoidAndNull()
 {
     $this->assertTrue(Matchers::nothing()->matches(null));
     $this->assertFalse(Matchers::nothing()->matches(new \stdClass()));
 }