diff options
Diffstat (limited to 'apex/classpath_element_test.go')
-rw-r--r-- | apex/classpath_element_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apex/classpath_element_test.go b/apex/classpath_element_test.go index 0193127b8..e2d846559 100644 --- a/apex/classpath_element_test.go +++ b/apex/classpath_element_test.go @@ -58,6 +58,7 @@ func TestCreateClasspathElements(t *testing.T) { }), java.PrepareForTestWithJavaSdkLibraryFiles, java.FixtureWithLastReleaseApis("foo", "othersdklibrary"), + java.FixtureConfigureApexBootJars("myapex:bar"), android.FixtureWithRootAndroidBp(` apex { name: "com.android.art", @@ -79,6 +80,7 @@ func TestCreateClasspathElements(t *testing.T) { bootclasspath_fragment { name: "art-bootclasspath-fragment", + image_name: "art", apex_available: [ "com.android.art", ], @@ -193,6 +195,10 @@ func TestCreateClasspathElements(t *testing.T) { apex: "com.android.art", module: "art-bootclasspath-fragment", }, + { + apex: "myapex", + module: "mybootclasspath-fragment", + }, ], } `), |