Example usage for org.apache.commons.collections4 BulkTest makeSuite

List of usage examples for org.apache.commons.collections4 BulkTest makeSuite

Introduction

In this page you can find the example usage for org.apache.commons.collections4 BulkTest makeSuite.

Prototype

public static TestSuite makeSuite(final Class<? extends BulkTest> c) 

Source Link

Document

Returns a TestSuite for testing all of the simple tests and all the bulk tests defined by the given class.

The class is examined for simple and bulk test methods; any child bulk tests are also examined recursively; and the results are stored in a hierarchical TestSuite .

The given class must be a subclass of BulkTest and must not be abstract.

Usage

From source file:com.github.veqryn.collect.TestPatriciaTrieWithApacheCommonsCollections.java

public static Test suite() {
    return BulkTest.makeSuite(TestPatriciaTrieWithApacheCommonsCollections.class);
}