public void GetDisplayNameShouldReturnSpecifiedDisplayName() { var dataRowAttribute = new DataRowAttribute(null); dataRowAttribute.DisplayName = "DataRowTestWithDisplayName"; this.dummyTestClass = new DummyTestClass(); this.testMethodInfo = this.dummyTestClass.GetType().GetTypeInfo().GetDeclaredMethod("DataRowTestMethod"); var data = new string[] { "First", "Second", null }; var displayName = dataRowAttribute.GetDisplayName(this.testMethodInfo, data); Assert.AreEqual("DataRowTestWithDisplayName", displayName); }
public void GetDisplayNameShouldReturnAppropriateName() { var dataRowAttribute = new DataRowAttribute(null); this.dummyTestClass = new DummyTestClass(); this.testMethodInfo = this.dummyTestClass.GetType().GetTypeInfo().GetDeclaredMethod("DataRowTestMethod"); var data = new string[] { "First", "Second", null }; var data1 = new string[] { null, "First", "Second" }; var data2 = new string[] { "First", null, "Second" }; var displayName = dataRowAttribute.GetDisplayName(this.testMethodInfo, data); Assert.AreEqual("DataRowTestMethod (First,Second,)", displayName); displayName = dataRowAttribute.GetDisplayName(this.testMethodInfo, data1); Assert.AreEqual("DataRowTestMethod (,First,Second)", displayName); displayName = dataRowAttribute.GetDisplayName(this.testMethodInfo, data2); Assert.AreEqual("DataRowTestMethod (First,,Second)", displayName); }
public void TestInit() { this.dummyTestClass = new DummyTestClass(); this.testMethodInfo = this.dummyTestClass.GetType().GetTypeInfo().GetDeclaredMethod("TestMethod1"); this.dynamicDataAttribute = new DynamicDataAttribute("ReusableTestDataProperty"); }