aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/aggregation/ForceLoadTestCase.java
blob: 6fc2274f69f005dabfe75b69e6ecc8ab11a87d2b (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.aggregation;

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.aggregation.ForceLoad();
            assertTrue(com.yahoo.searchlib.aggregation.ForceLoad.forceLoad());
        } catch (com.yahoo.system.ForceLoadError e) {
            e.printStackTrace();
            fail("Load failed");
        }
    }

}