Exemple #1
0
        public void CreateHandlerTest()
        {
            FileOperationHandlerFactory target = new FileOperationHandlerFactory(); // TODO: Initialize to an appropriate value
            string handlerName = string.Empty;                                      // TODO: Initialize to an appropriate value
            IOperationHandler <FileOperation> expected = null;                      // TODO: Initialize to an appropriate value
            IOperationHandler <FileOperation> actual;

            actual = target.CreateHandler(handlerName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #2
0
        public void FileOperationHandlerFactoryConstructorTest()
        {
            FileOperationHandlerFactory target = new FileOperationHandlerFactory();

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