aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/system/ForceLoadTestCase.java
blob: 53e97b3c219147d864c01264b42a8d36e701f61e (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
25
26
27
28
29
30
31
32
33
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.system;

import org.junit.Test;

import static org.junit.Assert.assertTrue;

public class ForceLoadTestCase {

    @Test
    public void testLoadClasses() {

        try {
            ForceLoad.forceLoad(getClass().getPackage().getName(), new String[] { "Foo", "Bar" },
                                this.getClass().getClassLoader());
        } catch (ForceLoadError e) {
            e.printStackTrace();
            assertTrue(false);
        }
    }

    @Test
    public void testLoadBogusClass() {
        try {
            ForceLoad.forceLoad(getClass().getPackage().getName(), new String[] { "Foo", "Bar", "Baz" },
                                this.getClass().getClassLoader());
        } catch (ForceLoadError e) {
            return;
        }
        assertTrue(false);
    }

}