aboutsummaryrefslogtreecommitdiff
path: root/MindBox.Tests/CircleAreaCases.cs
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-11-13 22:40:23 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-11-13 22:40:23 +0300
commit61a4fe90b89cc127444405597a2590f8537474e5 (patch)
tree44bfa66169cba2a7f2b79d959bf762b5e9bdeaa2 /MindBox.Tests/CircleAreaCases.cs
Initial commit
Diffstat (limited to 'MindBox.Tests/CircleAreaCases.cs')
-rw-r--r--MindBox.Tests/CircleAreaCases.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MindBox.Tests/CircleAreaCases.cs b/MindBox.Tests/CircleAreaCases.cs
new file mode 100644
index 0000000..ce4a8d3
--- /dev/null
+++ b/MindBox.Tests/CircleAreaCases.cs
@@ -0,0 +1,12 @@
+using System.Collections;
+
+namespace MindBox.Tests;
+
+public class CircleAreaCases : IEnumerable
+{
+ public IEnumerator GetEnumerator()
+ {
+ yield return new object[] { new Circle { Radius = 7.0 }, 153.93804 };
+ yield return new object[] { new Circle { Radius = 15.0 }, 706.858347 };
+ }
+}