Add Javadoc and related settings
[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
8a0613fa
AM
31/**
32 * Test class using a {@link FileHandler}, which a {@link SimpleFormatter}.
33 */
d4e2e87c 34public class FileHandlerBenchmark extends JulHandlerBenchmarkBase {
7ac7128a 35
9368bd5e
AM
36 private Path outputFile;
37
8a0613fa
AM
38 /**
39 * Test setup
40 *
41 * @throws SecurityException
42 * If there is problem setting up the handler
43 * @throws IOException
44 * If there is problem setting up the handler
45 */
46 @Before
47 public void testSetup() throws SecurityException, IOException {
48 outputFile = Files.createTempFile(this.getClass().getSimpleName(), null);
9368bd5e 49
8a0613fa
AM
50 handler = new FileHandler(outputFile.toString(), false);
51 handler.setFormatter(new SimpleFormatter());
52 }
9368bd5e 53
8a0613fa
AM
54 /**
55 * Test cleanup
56 *
57 * @throws IOException
58 * If we could not delete the test file
59 */
60 @After
61 public void testTeardown() throws IOException {
62 Files.deleteIfExists(outputFile);
63 }
7ac7128a 64}
This page took 0.025604 seconds and 4 git commands to generate.