//
        //You can use the following additional attributes as you write your tests:
        //
        //Use ClassInitialize to run code before running the first test in the class
        //[ClassInitialize()]
        //public static void MyClassInitialize(TestContext testContext)
        //{
        //}
        //
        //Use ClassCleanup to run code after all tests in a class have run
        //[ClassCleanup()]
        //public static void MyClassCleanup()
        //{
        //}
        //
        //Use TestInitialize to run code before running each test
        //[TestInitialize()]
        //public void MyTestInitialize()
        //{
        //}
        //
        //Use TestCleanup to run code after each test has run
        //[TestCleanup()]
        //public void MyTestCleanup()
        //{
        //}
        //
        #endregion


        internal virtual IDocumentService_Accessor CreateIDocumentService_Accessor()
        {
            // TODO: Instantiate an appropriate concrete class.
            IDocumentService_Accessor target = null;

            return(target);
        }
        public void OpenDocumentTest1()
        {
            IDocumentService_Accessor target = CreateIDocumentService_Accessor(); // TODO: Initialize to an appropriate value
            Editor doc = null;                                                    // TODO: Initialize to an appropriate value

            target.OpenDocument(doc);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void OpenDocumentTest()
        {
            IDocumentService_Accessor target = CreateIDocumentService_Accessor(); // TODO: Initialize to an appropriate value
            string filename = string.Empty;                                       // TODO: Initialize to an appropriate value
            Editor expected = null;                                               // TODO: Initialize to an appropriate value
            Editor actual;

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