public void Test_Indices_GetCurrentIndices() { var input = new Indices(0, 1); input.Increment(); bool result = input.GetCurrentIndices()[0].Value == 0 && input.GetCurrentIndices()[1].Value == 1; Assert.True(result); }