13 lines
309 B
C#
13 lines
309 B
C#
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 };
|
|
}
|
|
}
|