1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-04 16:17:17 +02:00

Replicate extra scenerio in audio loading test

(hazardous for streaming)
This commit is contained in:
Filip Gawin 2019-05-12 14:30:11 +02:00
parent c234eb00f6
commit 88b1c9e509

View File

@ -23,6 +23,9 @@ BOOST_AUTO_TEST_CASE(testBufferIsPlaying) {
sound.play();
BOOST_REQUIRE(sound.isPlaying() == true);
sound.play();
BOOST_REQUIRE(sound.isPlaying() == true);
sound.pause();
BOOST_REQUIRE(sound.isPaused() == true);