public void CreateCategoryTest()
        {
            BusiBlocksDocoProvider target = new BusiBlocksDocoProvider();            // TODO: Initialize to an appropriate value
            string   displayName          = "Unit Test Category";                    // TODO: Initialize to an appropriate value
            Category expected             = DocoManager.CreateCategory(displayName); // TODO: Initialize to an appropriate value
            Category actual;

            actual = target.CreateCategory(displayName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Able to create a test category");
        }
Ejemplo n.º 2
0
 public void TestMethod1()
 {
     BusiBlocksDocoProvider bbProvider = new BusiBlocksDocoProvider();
     //Create an online chapter
 }