public HtmlTag VisualizePartial(TypeInput input) { var type = input.Type; var div = new HtmlTag("div"); div.Text(type.Name); div.Title(type.AssemblyQualifiedName); return div; }
public void write_body_for_chain_with_input_type() { var chain = new BehaviorChain(); chain.AddToEnd(ActionCall.For<ControllerTarget>(x => x.OneInOneOut(null))); var tag = new HtmlTag("td"); new InputModelColumn().WriteBody(chain, null, tag); tag.Text().ShouldEqual(typeof (Model1).Name); tag.Title().ShouldEqual(typeof (Model1).AssemblyQualifiedName); }