コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: sgtpipal/HUETA
        public void DeleteAuthors()
        {
            AuthorsWindow del = new AuthorsWindow();

            Assert.IsTrue(del.DeleteAuthors(1));
            Assert.IsFalse(del.DeleteAuthors(7));
        }
コード例 #2
0
        public void OpenAuthorWindow()
        {
            AuthorsWindow authorWindow = new AuthorsWindow();

            authorWindow.Show();
        }