mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-03-09 20:29:17 +07:00
Moved d2video test case to correct class
This commit is contained in:
parent
b57d7aaf4e
commit
070295a25c
@ -77,7 +77,6 @@ class MpqStreamTest extends RiiabloTest {
|
||||
@ValueSource(strings = {
|
||||
"data\\global\\music\\Act1\\andarielaction.wav",
|
||||
"data\\global\\music\\Act1\\tristram.wav",
|
||||
"data\\local\\video\\New_Bliz640x240.bik",
|
||||
})
|
||||
@Override
|
||||
void read(String in) throws IOException {
|
||||
@ -118,4 +117,21 @@ class MpqStreamTest extends RiiabloTest {
|
||||
super.read(in);
|
||||
}
|
||||
}
|
||||
|
||||
@Nested
|
||||
@TestInstance(PER_CLASS)
|
||||
class d2video extends NestedMpqStreamTest {
|
||||
d2video(TestInfo testInfo) {
|
||||
super(testInfo);
|
||||
}
|
||||
|
||||
@ParameterizedTest
|
||||
@ValueSource(strings = {
|
||||
"data\\local\\video\\New_Bliz640x240.bik",
|
||||
})
|
||||
@Override
|
||||
void read(String in) throws IOException {
|
||||
super.read(in);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user