コード例 #1
0
        public void CompareTest()
        {
            IComparer target   = new StringPairSorter(); // TODO: Initialize to an appropriate value
            object    x        = null;                   // TODO: Initialize to an appropriate value
            object    y        = null;                   // TODO: Initialize to an appropriate value
            int       expected = 0;                      // TODO: Initialize to an appropriate value
            int       actual;

            actual = target.Compare(x, y);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #2
0
        public void StringPairSorterConstructorTest()
        {
            StringPairSorter target = new StringPairSorter();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }