mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
18 lines
322 B
C#
18 lines
322 B
C#
namespace Reverse.Tests
|
|
{
|
|
internal class TestReverser : Reverser
|
|
{
|
|
public TestReverser(int arraySize) : base(arraySize) { }
|
|
|
|
public int[] GetArray()
|
|
{
|
|
return _array;
|
|
}
|
|
|
|
public void SetArray(int[] array)
|
|
{
|
|
_array = array;
|
|
}
|
|
}
|
|
}
|