1 instantiation of TestData
System.Windows.Forms.Tests (1)
System\Windows\Forms\ClipboardTests.cs (1)
727TestData expected = new(DateTime.Now);
12 references to TestData
System.Windows.Forms.Tests (12)
System\Windows\Forms\ClipboardTests.cs (12)
727TestData expected = new(DateTime.Now); 732Clipboard.TryGetData(format, TestData.TestDataResolver, out TestData? data).Should().BeTrue(); 733var result = data.Should().BeOfType<TestData>().Subject; 739Clipboard.TryGetData(format, TestData.TestDataResolver, out TestData? testData).Should().BeTrue(); 740expected.Equals(testData.Should().BeOfType<TestData>().Subject); 748Action tryGetDataWithResolver = () => Clipboard.TryGetData(format, TestData.TestDataResolver, out testData); 765public void Equals(TestData actual) 775if (typeof(TestData).FullName == fullName) 777return typeof(TestData);