0

我正在实施示例应用程序以了解 JMH。我在运行它时遇到问题。我发现了这个错误

No matching benchmarks. Miss-spelled regexp? Use -v for verbose output. 

这是我的代码。

public class TestJMS {



   @GenerateMicroBenchmark
   public void wellHelloThere() {

   }



   public static void main(String[] args) throws RunnerException {
       Options opt = new OptionsBuilder()
               .include(".*" + TestJMS.class.getSimpleName() + ".*")
               .forks(1)
               .build();

       new Runner(opt).run();
   }

}

我发现许多与此问题相关的帖子,但我没有明确的答案。请用简单的方式解释。

4

0 回答 0