Re-format source code
[policy/engine.git] / PolicyEngineUtils / src / test / java / org / onap / policy / utils / test / BackUpMonitorEntityTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineUtils
4  * ================================================================================
5  * Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.utils.test;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25
26 import java.util.Date;
27
28 import org.junit.Test;
29 import org.onap.policy.jpa.BackUpMonitorEntity;
30
31 public class BackUpMonitorEntityTest {
32     @Test
33     public void testEntity() {
34         String value = "testVal";
35
36         BackUpMonitorEntity entity = new BackUpMonitorEntity();
37         assertNotNull(entity);
38
39         entity.setResourceName(value);
40         entity.setResourceNodeName(value);
41         entity.setFlag(value);
42         entity.setNotificationRecord(value);
43         entity.prePersist();
44         entity.preUpdate();
45         Date date = new Date();
46         entity.setTimeStamp(date);
47
48         assertEquals(value, entity.getResourceName());
49         assertEquals(value, entity.getResourceNodeName());
50         assertEquals(value, entity.getFlag());
51         assertEquals(value, entity.getNotificationRecord());
52         assertEquals(date, entity.getTimeStamp());
53     }
54 }