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