5 references to FlagsEnum
Microsoft.AspNetCore.Mvc.Core.Test (5)
ModelBinding\Binders\SimpleTypeModelBinderTest.cs (5)
469var bindingContext = GetBindingContext(typeof(FlagsEnum)); 475var binder = new SimpleTypeModelBinder(typeof(FlagsEnum), NullLoggerFactory.Instance); 482var boundModel = Assert.IsType<FlagsEnum>(bindingContext.Result.Model); 483Assert.Equal((FlagsEnum)expected, boundModel);