[DMAAP-BC] Consolidate bus controller repos
[dmaap/buscontroller.git] / dmaap-bc / src / test / java / org / onap / dmaap / dbcapi / 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.database;
22
23 import org.onap.dmaap.dbcapi.model.*;
24 import org.onap.dmaap.dbcapi.testframework.ReflectionHarness;
25
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class DBSingletonTest {
31
32         private static final String  fmt = "%24s: %s%n";
33
34         ReflectionHarness rh = new ReflectionHarness();
35
36
37         @Before
38         public void setUp() throws Exception {
39         }
40
41         @After
42         public void tearDown() throws Exception {
43         }
44
45
46
47         @Test
48         public void test3() {
49
50                 try {
51                         DBSingleton<Dmaap> dmaap = new DBSingleton<Dmaap>(Dmaap.class, "dmaap");
52                         Dmaap d = new Dmaap.DmaapBuilder().createDmaap();
53                         dmaap.init( d );
54                         d = dmaap.get();
55                         d.setDmaapName( "foo" );
56                         dmaap.update( d );
57                         dmaap.remove();
58                 } catch (Exception e ) {
59                 }
60
61         }
62
63
64
65
66 }
67