UnitTest1.cs 563 B

123456789101112131415161718192021222324
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using BookStore;
  3. using System;
  4. namespace UnitTestProject
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. MainWindow wnd = new MainWindow();
  10. [TestMethod]
  11. public void InsertBtnTest()
  12. {
  13. // input
  14. string name = "Малыш и Карлсон";
  15. string price = "100";
  16. string author = "Александр Сергеевич Пушкин";
  17. string category = "Детям";
  18. wnd.InsertBook();
  19. }
  20. }
  21. }