-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathFixed64.Tests.cs
More file actions
227 lines (187 loc) · 6 KB
/
Fixed64.Tests.cs
File metadata and controls
227 lines (187 loc) · 6 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
using MemoryPack;
using System;
using System.Text.Json;
using System.Text.Json.Serialization;
using Xunit;
namespace FixedMathSharp.Tests
{
public class Fixed64Tests
{
#region Test: Basic Arithmetic Operations (+, -, *, /)
[Fact]
public void Add_Fixed64Values_ReturnsCorrectSum()
{
var a = new Fixed64(2);
var b = new Fixed64(3);
var result = a + b;
Assert.Equal(new Fixed64(5), result);
}
[Fact]
public void Subtract_Fixed64Values_ReturnsCorrectDifference()
{
var a = new Fixed64(5);
var b = new Fixed64(3);
var result = a - b;
Assert.Equal(new Fixed64(2), result);
}
[Fact]
public void Multiply_Fixed64Values_ReturnsCorrectProduct()
{
var a = new Fixed64(2);
var b = new Fixed64(3);
var result = a * b;
Assert.Equal(new Fixed64(6), result);
}
[Fact]
public void Divide_Fixed64Values_ReturnsCorrectQuotient()
{
var a = new Fixed64(6);
var b = new Fixed64(2);
var result = a / b;
Assert.Equal(new Fixed64(3), result);
}
[Fact]
public void Divide_ByZero_ThrowsException()
{
var a = new Fixed64(6);
Assert.Throws<DivideByZeroException>(() => { var result = a / Fixed64.Zero; });
}
#endregion
#region Test: Comparison Operators (<, <=, >, >=, ==, !=)
[Fact]
public void GreaterThan_Fixed64Values_ReturnsTrue()
{
var a = new Fixed64(5);
var b = new Fixed64(3);
Assert.True(a > b);
}
[Fact]
public void LessThanOrEqual_Fixed64Values_ReturnsTrue()
{
var a = new Fixed64(3);
var b = new Fixed64(5);
Assert.True(a <= b);
}
[Fact]
public void Equality_Fixed64Values_ReturnsTrue()
{
var a = new Fixed64(5);
var b = new Fixed64(5);
Assert.True(a == b);
}
[Fact]
public void NotEquality_Fixed64Values_ReturnsTrue()
{
var a = new Fixed64(5);
var b = new Fixed64(3);
Assert.True(a != b);
}
#endregion
#region Test: Implicit and Explicit Conversions
[Fact]
public void Convert_FromInteger_ReturnsCorrectFixed64()
{
Fixed64 result = (Fixed64)5;
Assert.Equal(new Fixed64(5), result);
}
[Fact]
public void Convert_FromFloat_ReturnsCorrectFixed64()
{
Fixed64 result = (Fixed64)5.5f;
Assert.Equal(new Fixed64(5.5f), result);
}
[Fact]
public void Convert_ToDouble_ReturnsCorrectDouble()
{
var fixedValue = new Fixed64(5.5f);
double result = (double)fixedValue;
Assert.Equal(5.5, result);
}
#endregion
#region Test: Fraction Method
[Fact]
public void Fraction_CreatesCorrectFixed64Value()
{
var result = Fixed64.Fraction(1, 2);
Assert.Equal(new Fixed64(0.5f), result);
}
#endregion
#region Test: Arithmetic Overflow Protection
[Fact]
public void Add_OverflowProtection_ReturnsMaxValue()
{
var a = Fixed64.MAX_VALUE;
var b = new Fixed64(1);
var result = a + b;
Assert.Equal(Fixed64.MAX_VALUE, result);
}
[Fact]
public void Subtract_OverflowProtection_ReturnsMinValue()
{
var a = Fixed64.MIN_VALUE;
var b = new Fixed64(1);
var result = a - b;
Assert.Equal(Fixed64.MIN_VALUE, result);
}
#endregion
#region Test: Operations
[Fact]
public void IsInteger_PositiveInteger_ReturnsTrue()
{
var a = new Fixed64(42);
Assert.True(a.IsInteger());
}
[Fact]
public void IsInteger_NegativeInteger_ReturnsTrue()
{
var a = new Fixed64(-42);
Assert.True(a.IsInteger());
}
[Fact]
public void IsInteger_WhenZero_ReturnsTrue()
{
var a = Fixed64.Zero;
Assert.True(a.IsInteger());
}
[Fact]
public void IsInteger_PositiveDecimal_ReturnsFalse()
{
var a = new Fixed64(4.2);
Assert.False(a.IsInteger());
}
[Fact]
public void IsInteger_NegativeDecimal_ReturnsFalse()
{
var a = new Fixed64(-4.2);
Assert.False(a.IsInteger());
}
#endregion
#region Test: Serialization
[Fact]
public void Fixed64_NetSerialization_RoundTripMaintainsData()
{
var originalValue = FixedMath.PI;
var jsonOptions = new JsonSerializerOptions
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
ReferenceHandler = ReferenceHandler.IgnoreCycles,
IncludeFields = true,
IgnoreReadOnlyProperties = true
};
var json = JsonSerializer.SerializeToUtf8Bytes(originalValue, jsonOptions);
var deserializedValue = JsonSerializer.Deserialize<Fixed64>(json, jsonOptions);
// Check that deserialized values match the original
Assert.Equal(originalValue, deserializedValue);
}
[Fact]
public void Fixed64_MemoryPackSerialization_RoundTripMaintainsData()
{
Fixed64 originalValue = FixedMath.PI;
byte[] bytes = MemoryPackSerializer.Serialize(originalValue);
Fixed64 deserializedValue = MemoryPackSerializer.Deserialize<Fixed64>(bytes);
// Check that deserialized values match the original
Assert.Equal(originalValue, deserializedValue);
}
#endregion
}
}