public void create_converter()
        {
            var func = new StringConstructorConverterFamily().CreateConverter(typeof(Component), null);

            func.Convert("something").ShouldBeOfType <Component>()
            .Text.ShouldEqual("something");
        }
 public void matches_positive()
 {
     var family = new StringConstructorConverterFamily();
     family.Matches(typeof(Component), null).ShouldBeTrue();
 }
 public void create_converter()
 {
     var func = new StringConstructorConverterFamily().CreateConverter(typeof (Component), null);
     func.Convert("something").ShouldBeOfType<Component>()
         .Text.ShouldEqual("something");
 }
        public void matches_positive()
        {
            var family = new StringConstructorConverterFamily();

            family.Matches(typeof(Component), null).ShouldBeTrue();
        }