Merge pull request #554 from deplinenoise/ppc_fixes
[mono.git] / mcs / class / monodoc / Test / Monodoc / SettingsTest.cs
1 using System;
2 using System.IO;
3 using System.Linq;
4 using System.Collections.Generic;
5
6 using NUnit.Framework;
7
8 using Monodoc;
9
10 namespace MonoTests.Monodoc
11 {
12         [TestFixture]
13         public class SettingsTest
14         {
15                 [Test]
16                 public void DocPathConfigTest ()
17                 {
18                         // the docPath variable is the only one we know for sure should exist
19                         Assert.IsNotNull (Config.Get ("docPath"));
20                         Assert.IsNotEmpty (Config.Get ("docPath"));
21                 }
22         }
23 }