b1019017a6bf4d6b24f0ca4da6f10f586e33d5af
[aai/sparky-be.git] / sparkybe-onap-service / src / test / java / org / onap / aai / sparky / util / StringCollectionContainsMatcher.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
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
22 package org.onap.aai.sparky.util;
23
24 import org.hamcrest.Description;
25
26 import java.util.List;
27
28 public class StringCollectionContainsMatcher extends BaseMatcher<List<String>> {
29
30   private String valueToCheck;
31   
32   @SuppressWarnings({"unused", "unchecked"})
33   public StringCollectionContainsMatcher(String valToCheck) {
34     this.valueToCheck = valToCheck;
35   }
36
37   @Override
38   public void describeTo(Description arg0) {
39     // TODO Auto-generated method stub
40   }
41
42   @Override
43   public boolean matches(List<String> argumentList) {
44     for ( String listItem : argumentList ) {
45
46       if ( listItem.contains(valueToCheck)) {
47         return true;
48       }
49     }
50
51     return false;
52   }
53
54   /*@Override
55   public boolean matches(Object arg0) {
56
57     @SuppressWarnings("unchecked")
58     List<String> argumentList = (List<String>) arg0;
59
60     for ( String listItem : argumentList ) {
61
62       if ( listItem.contains(valueToCheck)) {
63         return true;
64       }
65     }
66
67     return false;
68   }*/
69 }