mirror of
https://github.com/0xJ1M/MathsEngine.git
synced 2026-06-05 04:00:07 +00:00
WIP
This commit is contained in:
20
MathEngine/EngineTests/Types/DecimalValueTests.cs
Normal file
20
MathEngine/EngineTests/Types/DecimalValueTests.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Xunit;
|
||||
|
||||
using MathEngine.Types;
|
||||
|
||||
namespace EngineTests.Types
|
||||
{
|
||||
public class DecimalValueTests
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Test that an ArgumentException is raised if zero is given for SegmentSize
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ConstructorReturnsValidDecimalValueInstance()
|
||||
{
|
||||
decimal expected = 123;
|
||||
var value1 = new DecimalValue(123);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user