Exemplo n.º 1
0
        public void Assert_DotNetFramework_CommentsFile_Is_Found()
        {
            CommentsFileResolver fileResolver = new CommentsFileResolver(GetSystemAssembly());
            FileInfo             commentsFile = fileResolver.ResolveCommentsFile();

            Assert.IsNotNull(commentsFile, "The file resolver did not found the System assembly's XML comment file.");
        }
Exemplo n.º 2
0
        public void Assert_TestAssembly_CommentsFile_Is_Found()
        {
            CommentsFileResolver fileResolver = new CommentsFileResolver(GetTestAssembly());
            FileInfo             commentsFile = fileResolver.ResolveCommentsFile();

            Assert.IsNotNull(commentsFile, "The file resolver did not found the test assembly's XML comment file.");
        }