Add copyright header to all source files
[lttng-ust-java-tests.git] / src / test / java / org / lttng / ust / agent / benchmarks / jul / handler / builtin / FileHandlerBenchmark.java
CommitLineData
2b408e85
AM
1/*
2 * Copyright (C) 2015, 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
d4e2e87c 19package org.lttng.ust.agent.benchmarks.jul.handler.builtin;
7ac7128a
AM
20
21import java.io.IOException;
9368bd5e
AM
22import java.nio.file.Files;
23import java.nio.file.Path;
7ac7128a
AM
24import java.util.logging.FileHandler;
25import java.util.logging.SimpleFormatter;
26
9368bd5e 27import org.junit.After;
7ac7128a 28import org.junit.Before;
d4e2e87c 29import org.lttng.ust.agent.benchmarks.jul.handler.JulHandlerBenchmarkBase;
7ac7128a 30
d4e2e87c 31public class FileHandlerBenchmark extends JulHandlerBenchmarkBase {
7ac7128a 32
9368bd5e
AM
33 private Path outputFile;
34
7ac7128a
AM
35 @Before
36 public void testSetup() throws SecurityException, IOException {
9368bd5e
AM
37 outputFile = Files.createTempFile(this.getClass().getSimpleName(), null);
38
39 handler = new FileHandler(outputFile.toString(), false);
7ac7128a
AM
40 handler.setFormatter(new SimpleFormatter());
41 }
9368bd5e
AM
42
43 @After
44 public void testTeardown() throws IOException {
45 Files.deleteIfExists(outputFile);
46 }
7ac7128a 47}
This page took 0.025402 seconds and 4 git commands to generate.