Added tests for appc.flow.Transactions 51/40351/4
authorkurczews <krzysztof.kurczewski@nokia.com>
Fri, 30 Mar 2018 09:31:03 +0000 (11:31 +0200)
committerTakamune Cho <tc012c@att.com>
Tue, 3 Apr 2018 13:54:14 +0000 (13:54 +0000)
Change-Id: I00a683484f8a6e8a97e661a421382dafeb0e8237
Issue-ID: APPC-442
Signed-off-by: kurczews <krzysztof.kurczewski@nokia.com>
appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/TransactionsTest.java [new file with mode: 0644]

diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/TransactionsTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/TransactionsTest.java
new file mode 100644 (file)
index 0000000..a2eeb34
--- /dev/null
@@ -0,0 +1,66 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 Nokia Intellectual Property. All rights reserved.
+ * =============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.appc.flow.controller.data;
+
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TransactionsTest {
+
+    private Transactions transactions;
+
+    @Before
+    public void setUp() {
+        transactions = new Transactions();
+    }
+
+    @Test
+    public void get_set_transactions() {
+        List<Transaction> transactionsList = new ArrayList<>();
+        Transaction transaction = mock(Transaction.class);
+        transactionsList.add(transaction);
+
+        transactions.setTransactions(transactionsList);
+
+        Assert.assertEquals(transactionsList, this.transactions.getTransactions());
+    }
+
+    @Test
+    public void to_string() {
+        Transaction mock = mock(Transaction.class);
+        when(mock.toString()).thenReturn("some_transactions");
+
+        List<Transaction> transactionsList = new ArrayList<>();
+        transactionsList.add(mock);
+
+        transactions.setTransactions(transactionsList);
+
+        Assert.assertEquals("Transactions [transactions=[some_transactions]]",
+            transactions.toString());
+    }
+
+}
\ No newline at end of file