UnitTest1.cs 274 B

12345678910111213141516
  1. using WpfApp1;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. using System;
  4. namespace UnitTestProject1
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestMethodTextBoxIsNotNull()
  11. {
  12. }
  13. }
  14. }