using NUnit.Framework; using System.IO; namespace ln.application.tests { public class Tests { [SetUp] public void Setup() { using (StreamReader sr = new StreamReader("ConfigurationTest.conf")) { testConfiguration = sr.ReadToEnd(); } } string testConfiguration; [Test] public void TestTokenizer() { Assert.Pass(); } } }