Thread Test für Audio hinzugefügt

This commit is contained in:
Sebastian Kacza
2021-01-06 11:27:47 +01:00
parent 521a145c4e
commit db7e63b11a
2 changed files with 28 additions and 4 deletions

View File

@@ -18,8 +18,9 @@ class TEST_Audio {
@Test
void test() {
sound.spieleJauJau();
sound.spieleJau();
//sound.spieleJauJau();
//sound.spieleJau();
sound.test();
}
}

View File

@@ -41,6 +41,29 @@ public class Audio {
}
}
/**
* Spielt den "JauJau" Ton ab
*/
public void test() {
new Thread(new Runnable() {
@Override
public void run() {
try {
playSound("/sound/jaujau.wav");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}).start();
for(int i = 0; i < 500000; i++) {
System.out.println(i);
}
}
/*
* !!! DIESE METHODE IST NICHT VON MIR !!!