ex-oop-02-horse-race/HorseRace.Test/HorseTestBase.cs
github-classroom[bot] a681bc9dcb
Initial commit
2024-10-15 17:16:17 +00:00

14 lines
No EOL
307 B
C#

namespace HorseRace.Test;
#region test helper methods - ignore
public abstract class HorseTestBase
{
protected static void SetPosition(Horse horse, int position)
{
var prop = typeof(Horse).GetProperty(nameof(Horse.Position));
prop?.SetValue(horse, position);
}
}
#endregion