コード例 #1
0
        public void GetcharactersTest()
        {
            port   prep     = new port();
            string getchara = prep.Getcharacters(@"D:\VS_practice\wordCount\wordCount\bin\Debug\input.txt");

            Assert.IsNotNull(getchara);
        }
コード例 #2
0
        public void WithdrawordTest()
        {
            port          prep  = new port();
            List <string> word  = new List <string>();
            string        getch = null;

            getch = prep.Getcharacters(@"D:\VS_practice\wordCount\wordCount\bin\Debug\input.txt");
            word  = prep.Withdraword();
            Assert.IsNotNull(word);
        }