summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/PackageTallyTest.java
blob: cfee980cb91097a9aec774a82154d9202fdb01bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.classanalysis;

import org.junit.Test;

import java.util.Set;

import static java.util.Collections.emptyMap;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

/**
 * @author gjoranv
 */
public class PackageTallyTest {

    @Test
    public void referenced_packages_missing_from_are_detected() {
        PackageTally tally = new PackageTally(emptyMap(), Set.of("p1", "java.util", "com.yahoo.api.annotations", "missing"));
        Set<String> missingPackages = tally.referencedPackagesMissingFrom(Set.of("p1"));
        assertThat(missingPackages, is(Set.of("missing")));
    }

}