예제 #1
0
        public void PhysCalculatorTests_SkipTokenTest()
        {
            string CommandLine = "Some_token in this line";
            string Token       = "Some_token";
            string expected    = "in this line";
            string actual;

            actual = TokenString.SkipToken(CommandLine, Token);
            Assert.AreEqual(expected, actual);
        }