-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathSmartEnumFromValue.cs
49 lines (38 loc) · 1.17 KB
/
SmartEnumFromValue.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
namespace Ardalis.SmartEnum.UnitTests
{
using System;
using FluentAssertions;
using Xunit;
public class SmartEnumFromValue
{
[Fact]
public void ReturnsEnumGivenMatchingValue()
{
var result = TestEnum.FromValue(1);
result.Should().BeSameAs(TestEnum.One);
}
[Fact]
public void ReturnsEnumGivenDerivedClass()
{
var result = TestDerivedEnum.FromValue(1);
result.Should().NotBeNull().And.BeSameAs(TestDerivedEnum.One);
}
[Fact]
public void ThrowsGivenNonMatchingValue()
{
var value = -1;
Action action = () => TestEnum.FromValue(value);
action.Should()
.ThrowExactly<SmartEnumNotFoundException>()
.WithMessage($"No {typeof(TestEnum).Name} with Value {value} found.");
}
[Fact]
public void ReturnsDefaultEnumGivenNonMatchingValue()
{
var value = -1;
var defaultEnum = TestEnum.One;
var result = TestEnum.FromValue(value, defaultEnum);
result.Should().BeSameAs(defaultEnum);
}
}
}