Exemplo n.º 1
0
 public void GetAllFieldsShouldWork()
 {
     string[] values = { "1", "2", "3", "4", "5", "6" };
     mockProcessor.ExpectAndReturn("GetStringArray", new string[] { "1", "2", "3", "4", "5", "6" }, new object[] { "getAllFields", new string[] {} });
     string[] actualResult = selenium.GetAllFields();
     Assert.AreEqual(new string[] { "1", "2", "3", "4", "5", "6" }, actualResult);
 }