public void test_bind_no_properties()
 {
   var registry = new EmptyServiceRegistry();
   var instance = new PropertyBinder(registry);
   var sample = new SampleClass();
   instance.Bind(sample);
   Assert(sample.instance == null);
 }
예제 #2
0
    public void test_bind_no_properties()
    {
        var registry = new EmptyServiceRegistry();
        var instance = new PropertyBinder(registry);
        var sample   = new SampleClass();

        instance.Bind(sample);
        Assert(sample.instance == null);
    }