Define instance methods for reverser.

This commit is contained in:
Kristian Stolen
2022-01-12 20:00:59 +08:00
parent 08282e1a7d
commit a819a535bb
3 changed files with 86 additions and 37 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}
}