summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/tests/MonoGame.Extended.Tests/Primitives/CircleFTests.cs
blob: f88155f618f31e1570b4c958b9be426cab2a9ee1 (plain)
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
using System;
using System.Collections.Generic;
using System.Globalization;
using Microsoft.Xna.Framework;
using Xunit;

namespace MonoGame.Extended.Tests.Primitives
{

public class CircleFTests
{

        [Fact]
        public void CircCircIntersectionDiagonalCircleTest()
        {
            var circle = new CircleF(new Point2(16.0f, 16.0f), 16.0f);
            var point = new Point2(0, 0);

            Assert.False(circle.Contains(point));
        }
//        public IEnumerable<TestCaseData> ConstructorTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new Point2(), 0.0f).SetName(
//                        "The empty circle has the expected position and radius.");
//                yield return
//                    new TestCaseData(new Point2(5, 5), 15f).SetName(
//                        "A non-empty circle has the expected position and radius.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(ConstructorTestCases))]
//        public void Constructor(Point2 centre, float radius)
//        {
//            var circle = new CircleF(centre, radius);
//            Assert.Equal(centre, circle.Center);
//            Assert.Equal(radius, circle.Radius);
//        }

//        public IEnumerable<TestCaseData> CreateFromMinimumMaximumTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new Point2(), new Point2(), new CircleF()).SetName(
//                        "The bounding circle created from the zero minimum point and zero maximum point is the empty bounding circle.")
//                    ;
//                yield return
//                    new TestCaseData(new Point2(5, 5), new Point2(15, 15),
//                        new CircleF(new Point2(10, 10), 5f)).SetName(
//                        "The bounding circle created from the non-zero minimum point and the non-zero maximum point is the expected bounding circle.")
//                    ;
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(CreateFromMinimumMaximumTestCases))]
//        public void CreateFromMinimumMaximum(Point2 minimum, Point2 maximum, CircleF expectedBoundingCircle)
//        {
//            var actualBoundingCircle = CircleF.CreateFrom(minimum, maximum);
//            Assert.Equal(expectedBoundingCircle, actualBoundingCircle);
//        }

//        public IEnumerable<TestCaseData> CreateFromPointsTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(null, new CircleF()).SetName(
//                        "The bounding circle created from null points is the empty bounding circle.");
//                yield return
//                    new TestCaseData(new Point2[0], new CircleF()).SetName(
//                        "The bounding circle created from the empty set of points is the empty bounding circle.");
//                yield return
//                    new TestCaseData(
//                        new[]
//                        {
//                            new Point2(5, 5), new Point2(10, 10), new Point2(15, 15), new Point2(-5, -5),
//                            new Point2(-15, -15)
//                        }, new CircleF(new Point2(0, 0), 15)).SetName(
//                        "The bounding circle created from a non-empty set of points is the expected bounding circle.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(CreateFromPointsTestCases))]
//        public void CreateFromPoints(Point2[] points, CircleF expectedCircle)
//        {
//            var actualCircle = CircleF.CreateFrom(points);
//            Assert.Equal(expectedCircle, actualCircle);
//        }

//        public IEnumerable<TestCaseData> IntersectsCircleTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new CircleF(), true).SetName(
//                        "Two empty circles intersect.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(-10, -10), 15),
//                        new CircleF(new Point2(20, 20), 40), true).SetName(
//                        "Two overlapping non-empty circles intersect.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(-40, -50), 15),
//                        new CircleF(new Point2(20, 20), 15), false).SetName(
//                        "Two non-overlapping non-empty circles do not intersect.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(IntersectsCircleTestCases))]
//        public void Intersects(CircleF circle, CircleF circle2, bool expectedToIntersect)
//        {
//            Assert.Equal(expectedToIntersect, circle.Intersects(circle2));
//            Assert.Equal(expectedToIntersect, CircleF.Intersects(circle, circle2));
//        }

//        public IEnumerable<TestCaseData> IntersectsRectangleTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new RectangleF(), true).SetName(
//                        "The empty circle and the empty rectangle intersect.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 15),
//                        new RectangleF(new Point2(0, 0), new Size2(40, 40)), true).SetName(
//                        "The non-empty circle and a non-empty overlapping rectangle intersect.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(-40, -50), 15),
//                        new RectangleF(new Point2(20, 20), new Size2(15, 15)), false).SetName(
//                        "The non-empty circle and a non-empty non-overlapping rectangle do not intersect.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(IntersectsRectangleTestCases))]
//        public void Intersects(CircleF circle, RectangleF rectangle, bool expectedToIntersect)
//        {
//            Assert.Equal(expectedToIntersect, circle.Intersects((BoundingRectangle)rectangle));
//            Assert.Equal(expectedToIntersect, CircleF.Intersects(circle, (BoundingRectangle)rectangle));
//        }

//        public IEnumerable<TestCaseData> ContainsPointTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new Point2(), true).SetName(
//                        "The empty circle contains the zero point.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 15), new Point2(-15, -15), true)
//                        .SetName(
//                            "A non-empty circle contains a point inside it.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 15), new Point2(-16, 15), false)
//                        .SetName(
//                            "A non-empty circle does not contain a point outside it.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(ContainsPointTestCases))]
//        public void ContainsPoint(CircleF circle, Point2 point, bool expectedToContainPoint)
//        {
//            Assert.Equal(expectedToContainPoint, circle.Contains(point));
//            Assert.Equal(expectedToContainPoint, CircleF.Contains(circle, point));
//        }

//        public IEnumerable<TestCaseData> ClosestPointTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new Point2(), new Point2()).SetName(
//                        "The closest point on the empty circle to the zero point is the zero point.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 50), new Point2(25, 25),
//                        new Point2(25, 25)).SetName(
//                        "The closest point on a non-empty circle to a point which is inside the circle is that point.")
//                    ;
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 50), new Point2(400, 0),
//                        new Point2(50, 0)).SetName(
//                        "The closest point on a non-empty circle to a point which is outside the circle is the expected point.")
//                    ;
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(ClosestPointTestCases))]
//        public void ClosestPoint(CircleF circle, Point2 point, Point2 expectedClosestPoint)
//        {
//            var actualClosestPoint = circle.ClosestPointTo(point);
//            Assert.Equal(expectedClosestPoint, actualClosestPoint);
//        }

//        public IEnumerable<TestCaseData> BoundaryPointTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), 0.0f, new Point2()).SetName(
//                        "The boundary point on the empty circle at an angle is the zero point.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 50), MathHelper.PiOver2,
//                        new Point2(0, 50)).SetName(
//                        "The boundary point on a non-empty circle at an angle is the expected point.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(BoundaryPointTestCases))]
//        public void BoundaryPointAt(CircleF circle, float angle, Point2 expectedPoint)
//        {
//            var actualPoint = circle.BoundaryPointAt(angle);
//            AssertExtensions.AreApproximatelyEqual(expectedPoint, actualPoint);
//        }

//        public IEnumerable<TestCaseData> EqualityTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new CircleF(), true).SetName(
//                        "Empty circles are equal.")
//                    ;
//                yield return
//                    new TestCaseData(
//                        new CircleF(new Point2(0, 0), float.MaxValue),
//                        new CircleF(new Point2(0, 0), float.MinValue), false).SetName(
//                        "Two different non-empty circles are not equal.");
//                yield return
//                    new TestCaseData(
//                        new CircleF(new Point2(0, 0), float.MinValue),
//                        new CircleF(new Point2(0, 0), float.MinValue), true).SetName(
//                        "Two identical non-empty circles are equal.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(EqualityTestCases))]
//        public void Equality(CircleF circle1, CircleF circle2, bool expectedToBeEqual)
//        {
//            Assert.IsTrue(Equals(circle1, circle2) == expectedToBeEqual);
//            Assert.IsTrue(circle1 == circle2 == expectedToBeEqual);
//            Assert.IsFalse(circle1 == circle2 != expectedToBeEqual);
//            Assert.IsTrue(circle1.Equals(circle2) == expectedToBeEqual);

//            if (expectedToBeEqual)
//                Assert.Equal(circle1.GetHashCode(), circle2.GetHashCode());
//        }

//        public IEnumerable<TestCaseData> InequalityTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), null, false).SetName(
//                        "A circle is not equal to a null object.");
//                yield return
//                    new TestCaseData(new CircleF(), new object(), false).SetName(
//                        "A circle is not equal to an instantiated object.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(InequalityTestCases))]
//        public void Inequality(CircleF circle, object obj, bool expectedToBeEqual)
//        {
//            Assert.IsTrue(circle.Equals(obj) == expectedToBeEqual);
//        }

//        public IEnumerable<TestCaseData> HashCodeTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new CircleF(), true).SetName(
//                        "Two empty circles have the same hash code.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 50),
//                        new CircleF(new Point2(0, 0), 50), true).SetName(
//                        "Two indentical non-empty circles have the same hash code.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(0, 0), 50),
//                        new CircleF(new Point2(50, 50), 50), false).SetName(
//                        "Two different non-empty circles do not have the same hash code.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(HashCodeTestCases))]
//        public void HashCode(CircleF circle1, CircleF circle2, bool expectedThatHashCodesAreEqual)
//        {
//            var hashCode1 = circle1.GetHashCode();
//            var hashCode2 = circle2.GetHashCode();
//            if (expectedThatHashCodesAreEqual)
//                Assert.Equal(hashCode1, hashCode2);
//            else
//                Assert.AreNotEqual(hashCode1, hashCode2);
//        }

//        public IEnumerable<TestCaseData> ToRectangleTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new Rectangle()).SetName(
//                        "The empty circle converted to a rectangle is the empty integer rectangle.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(25, 25), 25),
//                        new Rectangle(0, 0, 50, 50)).SetName(
//                        "A non-empty circle converted to a rectangle is the expected integer rectangle.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(ToRectangleTestCases))]
//        public void ToRectangle(CircleF circle, Rectangle expectedRectangle)
//        {
//            var actualRectangle = (Rectangle)circle;
//            Assert.Equal(expectedRectangle, actualRectangle);
//        }

//        public IEnumerable<TestCaseData> ToRectangleFTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(), new RectangleF()).SetName(
//                        "The empty circle converted to a rectangle is the empty float rectangle.");
//                yield return
//                    new TestCaseData(new CircleF(new Point2(25, 25), 25),
//                        new RectangleF(0, 0, 50, 50)).SetName(
//                        "A non-empty circle converted to a rectangle is the expected float rectangle.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(ToRectangleFTestCases))]
//        public void ToRectangleF(CircleF circle, RectangleF expectedRectangle)
//        {
//            var actualRectangle = (RectangleF)circle;
//            Assert.Equal(expectedRectangle, actualRectangle);
//        }

//        public IEnumerable<TestCaseData> FromRectangleTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new Rectangle(), new CircleF()).SetName(
//                        "The empty rectangle converted to a circle is the empty circle.");
//                yield return
//                    new TestCaseData(new Rectangle(0, 0, 50, 50),
//                        new CircleF(new Point2(25, 25), 25)).SetName(
//                        "A non-empty rectangle converted to a circle is the expected circle.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(FromRectangleTestCases))]
//        public void FromRectangle(Rectangle rectangle, CircleF expectedCircle)
//        {
//            var actualCircle = (CircleF)rectangle;
//            Assert.Equal(expectedCircle, actualCircle);
//        }

//        public IEnumerable<TestCaseData> FromRectangleFTestCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new RectangleF(), new CircleF()).SetName(
//                        "The empty rectangle converted to a circle is the empty circle.");
//                yield return
//                    new TestCaseData(new RectangleF(0, 0, 50, 50),
//                        new CircleF(new Point2(25, 25), 25)).SetName(
//                        "A non-empty rectangle converted to a circle is the expected circle.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(FromRectangleFTestCases))]
//        public void FromRectangleF(RectangleF rectangle, CircleF expectedCircle)
//        {
//            var actualCircle = (CircleF)rectangle;
//            Assert.Equal(expectedCircle, actualCircle);
//        }

//        public IEnumerable<TestCaseData> StringCases
//        {
//            get
//            {
//                yield return
//                    new TestCaseData(new CircleF(),
//                        string.Format(CultureInfo.CurrentCulture, "Centre: {0}, Radius: {1}", new Point2(),
//                            0)).SetName(
//                        "The empty circle has the expected string representation using the current culture.");
//                yield return new TestCaseData(new CircleF(new Point2(5.1f, -5.123f), 5.4f),
//                    string.Format(CultureInfo.CurrentCulture, "Centre: {0}, Radius: {1}", new Point2(5.1f, -5.123f),
//                        5.4f)).SetName(
//                    "A non-empty circle has the expected string representation using the current culture.");
//            }
//        }

//        [Fact]
//        [TestCaseSource(nameof(StringCases))]
//        public void String(CircleF circle, string expectedString)
//        {
//            var actualString = circle.ToString();
//            Assert.Equal(expectedString, actualString);
//        }
    }
}