From 61de7099b0d6274eda3540866cabfed9ac80d02c Mon Sep 17 00:00:00 2001 From: kurczews Date: Fri, 30 Mar 2018 11:31:03 +0200 Subject: Added tests for appc.flow.Transactions Change-Id: I00a683484f8a6e8a97e661a421382dafeb0e8237 Issue-ID: APPC-442 Signed-off-by: kurczews --- .../flow/controller/data/TransactionsTest.java | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/TransactionsTest.java (limited to 'appc-config/appc-flow-controller') 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 index 000000000..a2eeb3455 --- /dev/null +++ b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/data/TransactionsTest.java @@ -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 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 transactionsList = new ArrayList<>(); + transactionsList.add(mock); + + transactions.setTransactions(transactionsList); + + Assert.assertEquals("Transactions [transactions=[some_transactions]]", + transactions.toString()); + } + +} \ No newline at end of file -- cgit 1.2.3-korg