Merge "Benchmark: Consistency in test names" am: b1bac93a52 am: 956e2618bd am: 9d4867f606

Change-Id: I41e095b0a02b91f0d260d553a23ec70500bdbbc9
gugelfrei
Automerger Merge Worker 4 years ago
commit 3cf987e81a

@ -102,7 +102,7 @@ public class EncoderTest {
}
@Test(timeout = PER_TEST_TIMEOUT_MS)
public void sampleEncoderTest() throws Exception {
public void testEncoder() throws Exception {
int status;
int frameSize;
//Parameters for video

@ -88,7 +88,7 @@ public class ExtractorTest {
}
@Test
public void sampleExtractTest() throws IOException {
public void testExtractor() throws IOException {
File inputFile = new File(mInputFilePath + mInputFileName);
assertTrue("Cannot find " + mInputFileName + " in directory " + mInputFilePath,
inputFile.exists());
@ -107,7 +107,7 @@ public class ExtractorTest {
}
@Test
public void sampleExtractNativeTest() throws IOException {
public void testNativeExtractor() throws IOException {
Native nativeExtractor = new Native();
File inputFile = new File(mInputFilePath + mInputFileName);
assertTrue("Cannot find " + mInputFileName + " in directory " + mInputFilePath,

@ -110,7 +110,7 @@ public class MuxerTest {
}
@Test
public void sampleMuxerTest() throws IOException {
public void testMuxer() throws IOException {
File inputFile = new File(mInputFilePath + mInputFileName);
assertTrue("Cannot find " + mInputFileName + " in directory " + mInputFilePath,
inputFile.exists());
@ -159,7 +159,7 @@ public class MuxerTest {
}
@Test
public void sampleMuxerNativeTest() {
public void testNativeMuxer() {
Native nativeMuxer = new Native();
File inputFile = new File(mInputFilePath + mInputFileName);
assertTrue("Cannot find " + mInputFileName + " in directory " + mInputFilePath,

Loading…
Cancel
Save