コード例 #1
0
ファイル: PingPongTests.cs プロジェクト: ayohana/ping-pong-cs
        public void PrintUserInput_ShowsOutput_StringList()
        {
            PingPong      testGame = new PingPong();
            List <string> testList = new List <string> {
                "1", "2", "\"ping\"", "4", "\"pong\""
            };

            CollectionAssert.AreEqual(testList, testGame.PrintUserInput(5));
        }