aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/ForceLoadTestCase.java
blob: 95551021fe0599a28c235f424d437604612d34d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.expression;

import org.junit.Test;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

public class ForceLoadTestCase {

    @Test
    public void testLoadClasses() {
        try {
            new com.yahoo.searchlib.expression.ForceLoad();
            assertTrue(com.yahoo.searchlib.expression.ForceLoad.forceLoad());
        } catch (com.yahoo.system.ForceLoadError e) {
            e.printStackTrace();
            fail("Load failed");
        }
    }

}