More unit tests to pass 50%
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / aaf / database / DBSingletonTest.java
1
2 /*-
3  * ============LICENSE_START=======================================================
4  * org.onap.dmaap
5  * ================================================================================
6  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.dmaap.dbcapi.aaf.database;
22
23 import org.onap.dmaap.dbcapi.aaf.database.DBSingleton;
24 import org.onap.dmaap.dbcapi.model.*;
25 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
26
27 import static org.junit.Assert.*;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32 import java.util.*;
33 import java.sql.*;
34
35 public class DBSingletonTest {
36
37         private static final String  fmt = "%24s: %s%n";
38
39         ReflectionHarness rh = new ReflectionHarness();
40
41
42         @Before
43         public void setUp() throws Exception {
44         }
45
46         @After
47         public void tearDown() throws Exception {
48         }
49
50
51
52         @Test
53         public void test3() {
54
55                 try {
56                         DBSingleton<Dmaap> dmaap = new DBSingleton<Dmaap>(Dmaap.class, "dmaap");
57                         Dmaap d = new Dmaap();
58                         dmaap.init( d );
59                         d = dmaap.get();
60                         d.setDmaapName( "foo" );
61                         dmaap.update( d );
62                         dmaap.remove();
63                 } catch (Exception e ) {
64                 }
65
66         }
67
68
69
70
71 }
72