123456789101112131415161718192021222324 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using BookStore;
- using System;
- namespace UnitTestProject
- {
- [TestClass]
- public class UnitTest1
- {
- MainWindow wnd = new MainWindow();
- [TestMethod]
- public void InsertBtnTest()
- {
- // input
- string name = "Малыш и Карлсон";
- string price = "100";
- string author = "Александр Сергеевич Пушкин";
- string category = "Детям";
- wnd.InsertBook();
- }
- }
- }
|