All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thoughtworks.gauge.tag.OrMatcher Maven / Gradle / Ivy

/*----------------------------------------------------------------
 *  Copyright (c) ThoughtWorks, Inc.
 *  Licensed under the Apache License, Version 2.0
 *  See LICENSE.txt in the project root for license information.
 *----------------------------------------------------------------*/
package com.thoughtworks.gauge.tag;

import java.util.List;

public class OrMatcher implements SimpleTagMatcher {
    public boolean isMatch(List tagsToMatch, List tagsToMatchWith) {
        if (tagsToMatch.size() == 0) {
            return true;
        }
        for (String tag : tagsToMatch) {
            if (tagsToMatchWith.contains(tag)) {
                return true;
            }
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy