mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 21:34:11 +02:00
Fixed test
This commit is contained in:
parent
4c6b43761f
commit
b1023ff36a
1 changed files with 2 additions and 2 deletions
|
@ -138,9 +138,9 @@ namespace Tests
|
||||||
eg.Set(66);
|
eg.Set(66);
|
||||||
Test.Assert(eg == .B);
|
Test.Assert(eg == .B);
|
||||||
|
|
||||||
var ea = EnumA.GetMaxValue();
|
var ea = Enum.GetMaxValue<EnumA>();
|
||||||
Test.Assert(ea == .B);
|
Test.Assert(ea == .B);
|
||||||
Test.Assert(EnumA.GetCount() == 2);
|
Test.Assert(Enum.GetCount<EnumA>() == 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue