Migrate to Junit 5 Jupiter
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / benchmarks / jul / handler / builtin / NoLoggerBenchmark.java
CommitLineData
249f8797
AM
1/*
2 * Copyright (C) 2016, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19package org.lttng.ust.agent.benchmarks.jul.handler.builtin;
20
7a4f0255
MJ
21import org.junit.jupiter.api.AfterEach;
22import org.junit.jupiter.api.BeforeEach;
249f8797
AM
23import org.lttng.ust.agent.benchmarks.jul.handler.JulHandlerBenchmarkBase;
24
25/**
26 * Benchmark that will avoid creating a Logger entirely, to benchmark just the
27 * bare worker.
28 */
29public class NoLoggerBenchmark extends JulHandlerBenchmarkBase {
30
31 /**
32 * Override the super class's setup() to avoid creating a Logger.
33 */
34 @Override
7a4f0255 35 @BeforeEach
249f8797
AM
36 public void setup() {
37 logger = null;
38 handler = null;
39 }
40
41 /**
42 * Override the super class's teardown()
43 */
44 @Override
7a4f0255 45 @AfterEach
249f8797
AM
46 public void teardown() {
47 }
48}
This page took 0.025504 seconds and 4 git commands to generate.