JOAL v2.6.0-rc-20250706
JOAL, OpenAL® API Binding for Java™ (public API).
DummyTest.java
Go to the documentation of this file.
1package com.jogamp.openal.test.junit;
2
3import org.junit.Assert;
4import org.junit.FixMethodOrder;
5import org.junit.Test;
6import org.junit.runners.MethodSorters;
7
8import com.jogamp.openal.test.util.UITestCase;
9
10/**
11 * Dummy test - always successful, merely exist to not let our Jenkins build not fail.
12 */
13@FixMethodOrder(MethodSorters.NAME_ASCENDING)
14public class DummyTest extends UITestCase {
15
16 @Test
17 public void test00() {
18 Assert.assertTrue(true);
19 }
20}
Dummy test - always successful, merely exist to not let our Jenkins build not fail.
Definition: DummyTest.java:14