summaryrefslogtreecommitdiffstats
path: root/jack-tests/tests/com/android/jack/shrob/ShrobAllTests.java
blob: fc8e0883a726482e4ff107a40345da1e1176660b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.android.jack.shrob;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(Suite.class)
@SuiteClasses(value = {
//    AnnotationsTest.class,
    FlattenPackageTests.class,
//    ObfuscationWithAttributesTests.class,
//    ObfuscationWithDebugInfoTests.class,
    ObfuscationWithMappingTests.class,
    ObfuscationWithoutMappingTests.class,
    RepackagingTest.class,
    SeedTests.class,
    ShrinkMultiDexTests.class,
    ShrinkTests.class,
    ShrobRuntimeTests.class
    })
public class ShrobAllTests {
}