All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jmh.PlusJmhTest Maven / Gradle / Ivy

The newest version!
package jmh;

import org.openjdk.jmh.annotations.Benchmark;
import orm.benchmark.plus.PlusTest;

public class PlusJmhTest extends BaseJmh {
    private final PlusTest test = new PlusTest();



    @Benchmark
    public Object getById() {
        return test.getById(1);
    }

    @Benchmark
    public Object list() {
        return test.list("admin");
    }

    @Benchmark
    public Object paging() {
        return test.paging("admin", 1, 30);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy