public void TryParseTest_Good()
        {
            bool expected = true;
            foreach (string str in UnitTestHelper.Bundles_Good)
            {
                OscBundle bundle = null;

                bool actual;
                actual = OscBundle.TryParse(str, out bundle);
                Assert.AreEqual(expected, actual, "While parsing good bundle '{0}'", str);
            }
        }
示例#2
0
        public void TryParseTest_Bad()
        {
            bool expected = false;

            foreach (string str in UnitTestHelper.Bundles_Bad)
            {
                OscBundle bundle = null;

                bool actual;
                actual = OscBundle.TryParse(str, out bundle);

                Assert.True(expected == actual, $"While parsing bad bundle '{str}'");
            }
        }