compliance package policy and resolves

package to read, consume, and analyze license metadata and dependency
graph.

Bug: 68860345
Bug: 151177513
Bug: 151953481

Change-Id: Ic08406fa2250a08ad26f2167d934f841c95d9148
This commit is contained in:
Bob Badour
2021-10-25 16:51:48 -07:00
parent a99ac620dd
commit 9ee7d03e1c
19 changed files with 3742 additions and 2 deletions

View File

@@ -125,10 +125,10 @@ func TestResolutionSet_AttachedToTarget(t *testing.T) {
rsShare := toResolutionSet(lg, share)
if rsShare.AttachedToTarget(newTestNode(lg, "binc")) {
if rsShare.AttachesToTarget(newTestNode(lg, "binc")) {
t.Errorf("unexpected AttachedToTarget(\"binc\"): got true, want false")
}
if !rsShare.AttachedToTarget(newTestNode(lg, "image")) {
if !rsShare.AttachesToTarget(newTestNode(lg, "image")) {
t.Errorf("unexpected AttachedToTarget(\"image\"): got false want true")
}
}