20 references to TestDatum
Microsoft.NET.StringTools.UnitTests (20)
InterningTestData.cs (20)
57yield return new object[] { new TestDatum((string)null) }; 58yield return new object[] { new TestDatum("") }; 59yield return new object[] { new TestDatum("Test") }; 60yield return new object[] { new TestDatum(null, "All") }; 61yield return new object[] { new TestDatum("", "All") }; 62yield return new object[] { new TestDatum("", "All", "") }; 63yield return new object[] { new TestDatum("Test", "All", "The", "Things") }; 71yield return new object[] { new TestDatum((string)null) }; 72yield return new object[] { new TestDatum("") }; 73yield return new object[] { new TestDatum(" ") }; 74yield return new object[] { new TestDatum(" ") }; 75yield return new object[] { new TestDatum(null, "") }; 76yield return new object[] { new TestDatum(null, " ") }; 77yield return new object[] { new TestDatum(" T ") }; 78yield return new object[] { new TestDatum(" Test ") }; 79yield return new object[] { new TestDatum(null, " Test ") }; 80yield return new object[] { new TestDatum(null, " Test All ") }; 81yield return new object[] { new TestDatum(" ", " Test", "", "All ", " ") }; 82yield return new object[] { new TestDatum("Test", " ", "", " ", " ") }; 83yield return new object[] { new TestDatum("Test", " All ", " The ", "Things") };