use of com.google.devtools.build.lib.actions.RunfilesSupplier in project bazel by bazelbuild.
the class RunfilesSupplierImplTest method testGetManifestsWhenSupplied.
@Test
public void testGetManifestsWhenSupplied() {
Artifact manifest = new Artifact(new PathFragment("manifest"), rootDir);
RunfilesSupplier underTest = new RunfilesSupplierImpl(new PathFragment("ignored"), Runfiles.EMPTY, manifest);
assertThat(underTest.getManifests()).containsExactly(manifest);
}
Aggregations