Add extra files that should have been included in the previous commit.
[cfb.git] / test / net / jaekl / cfb / xml / messages / BugCategoryTest.java
1 package net.jaekl.cfb.xml.messages;
2
3 import static org.junit.Assert.*;
4
5 import org.junit.Test;
6
7 public class BugCategoryTest {
8
9         @Test
10         public void testGetUninitializedVariables() {
11                 BugCategory cat = new BugCategory();
12                 
13                 assertEquals(-1, cat.getId());
14                 assertEquals("", cat.getAbbrev());
15                 assertEquals("", cat.getCategory());
16                 assertEquals("", cat.getDescr());
17                 assertEquals("", cat.getDetails());
18         }
19
20 }