canResolve() public method

public canResolve ( Nelmio\Alice\Definition\ValueInterface $value ) : boolean
$value Nelmio\Alice\Definition\ValueInterface
return boolean
 public function testCanResolvePropertyReferenceValues()
 {
     $resolver = new FakerFunctionCallValueResolver(FakerGeneratorFactory::create());
     $this->assertTrue($resolver->canResolve(new FunctionCallValue('')));
     $this->assertFalse($resolver->canResolve(new FakeValue()));
 }