A bit more testing
[cfb.git] / test / net / jaekl / qd / QDBundleFactoryTest.java
1 // Copyright (C) 2004, 2014 Christian Jaekl
2
3 package net.jaekl.qd;
4
5 import org.junit.Assert;
6
7 import org.junit.Test;
8
9 public class QDBundleFactoryTest {
10
11         @Test
12         public void test_getInst() {
13                 QDBundleFactory factory = QDBundleFactory.getInst();
14                 
15                 Assert.assertNotNull(factory);
16                 Assert.assertTrue(factory instanceof QDBundleFactory);
17                 Assert.assertTrue(factory == QDBundleFactory.getInst());
18         }
19 }