public void TestEnumAnnotationPickedUpOnActionParameter() { MethodInfo method = FindMethod(typeof(Customer2), "SomeAction", new[] { typeof(int) }); facetFactory.ProcessParams(Reflector, method, 0, Specification); IFacet facet = Specification.GetFacet(typeof(IEnumFacet)); Assert.IsNotNull(facet); Assert.IsTrue(facet is EnumFacet); CheckChoices(facet); }
public void TestEnumAnnotationPickedUpOnActionParameter() { IImmutableDictionary <string, ITypeSpecBuilder> metamodel = new Dictionary <string, ITypeSpecBuilder>().ToImmutableDictionary(); var method = FindMethod(typeof(Customer2), "SomeAction", new[] { typeof(int) }); metamodel = facetFactory.ProcessParams(Reflector, method, 0, Specification, metamodel); var facet = Specification.GetFacet(typeof(IEnumFacet)); Assert.IsNotNull(facet); Assert.IsTrue(facet is EnumFacet); CheckChoices(facet); Assert.IsNotNull(metamodel); }