12 references to TestEnum
Microsoft.AspNetCore.Components.Web.Tests (12)
Forms\InputSelectTest.cs (12)
13var rootComponent = new TestInputHostComponent<TestEnum, TestInputSelect<TestEnum>> 24Assert.Equal(TestEnum.Two, inputSelectComponent.CurrentValue); 32var rootComponent = new TestInputHostComponent<TestEnum, TestInputSelect<TestEnum>> 51var rootComponent = new TestInputHostComponent<TestEnum?, TestInputSelect<TestEnum?>> 62Assert.Equal(TestEnum.Two, inputSelectComponent.Value); 70var rootComponent = new TestInputHostComponent<TestEnum?, TestInputSelect<TestEnum?>> 220public TestEnum NotNullableEnum { get; set; } 222public TestEnum? NullableEnum { get; set; }