3fafe87bf0c668cefae6a5db021bd958ee93ef0e
[cfb.git] / test / net / jaekl / cfb / ConfigTest.java
1 package net.jaekl.cfb;
2
3 import static org.junit.Assert.*;
4
5 import org.junit.Test;
6
7 public class ConfigTest {
8
9         private static final String SAMPLE1 = 
10                           "; Path (relative or absolute) to the FINDBUGS_HOME, i.e., where FindBugs is installed\n"
11                         + "FindBugsHome=../findbugs-3.0.1/\n"
12                         + "; List (comma-separated) of email addresses to which notifications should be sent\n"
13                         + "notify=chris@localhost\n"
14                         + "\n"
15                         + "; Mail server setup\n"
16                         + "mail.smtp.host=localhost\n"
17                         + "mail.from=findbugs@localhost\n";
18
19         @Test
20         public void testReadFile() {
21                 // TODO:  wrap file access so that we can test this
22         }
23
24 }