source: josm/trunk/test/performance/org/openstreetmap/josm/data/osm/visitor/paint/WireframeMapRendererPerformanceTest.java@ 17275

Last change on this file since 17275 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 715 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm.visitor.paint;
3
4import org.junit.jupiter.api.AfterAll;
5import org.junit.jupiter.api.BeforeAll;
6
7/**
8 * Performance test of {@code WireframeMapRenderer}.
9 */
10class WireframeMapRendererPerformanceTest extends AbstractMapRendererPerformanceTestParent {
11
12 @BeforeAll
13 public static void load() throws Exception {
14 AbstractMapRendererPerformanceTestParent.load();
15 }
16
17 @AfterAll
18 public static void clean() throws Exception {
19 AbstractMapRendererPerformanceTestParent.clean();
20 }
21
22 @Override
23 protected Rendering buildRenderer() {
24 return new WireframeMapRenderer(g, nc, false);
25 }
26}
Note: See TracBrowser for help on using the repository browser.