blob: ce4a8d313ac9a7196f1b0a69aa3f71ecbbb544a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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 };
}
}
|