Exemplo n.º 1
0
        public void CreateExceptionTest()
        {
            BaseBusiness target  = new BaseBusiness();  // TODO: Initialize to an appropriate value
            Exception    ex      = null;                // TODO: Initialize to an appropriate value
            string       message = string.Empty;        // TODO: Initialize to an appropriate value
            BusinessWorkflowsException expected = null; // TODO: Initialize to an appropriate value
            BusinessWorkflowsException actual;

            actual = target.CreateException(ex, message);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }