aboutsummaryrefslogtreecommitdiff
path: root/tvsaver/saver2v1/save_relationship_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tvsaver/saver2v1/save_relationship_test.go')
-rw-r--r--tvsaver/saver2v1/save_relationship_test.go21
1 files changed, 11 insertions, 10 deletions
diff --git a/tvsaver/saver2v1/save_relationship_test.go b/tvsaver/saver2v1/save_relationship_test.go
index 6fa03bd..886670b 100644
--- a/tvsaver/saver2v1/save_relationship_test.go
+++ b/tvsaver/saver2v1/save_relationship_test.go
@@ -6,14 +6,15 @@ import (
"bytes"
"testing"
- "github.com/spdx/tools-golang/spdx"
+ "github.com/spdx/tools-golang/spdx/common"
+ "github.com/spdx/tools-golang/spdx/v2_1"
)
// ===== Relationship section Saver tests =====
func TestSaver2_1RelationshipSavesText(t *testing.T) {
- rln := &spdx.Relationship2_1{
- RefA: spdx.MakeDocElementID("", "DOCUMENT"),
- RefB: spdx.MakeDocElementID("", "2"),
+ rln := &v2_1.Relationship{
+ RefA: common.MakeDocElementID("", "DOCUMENT"),
+ RefB: common.MakeDocElementID("", "2"),
Relationship: "DESCRIBES",
RelationshipComment: "this is a comment",
}
@@ -39,9 +40,9 @@ RelationshipComment: this is a comment
}
func TestSaver2_1RelationshipOmitsOptionalFieldsIfEmpty(t *testing.T) {
- rln := &spdx.Relationship2_1{
- RefA: spdx.MakeDocElementID("", "DOCUMENT"),
- RefB: spdx.MakeDocElementID("", "2"),
+ rln := &v2_1.Relationship{
+ RefA: common.MakeDocElementID("", "DOCUMENT"),
+ RefB: common.MakeDocElementID("", "2"),
Relationship: "DESCRIBES",
}
@@ -64,9 +65,9 @@ func TestSaver2_1RelationshipOmitsOptionalFieldsIfEmpty(t *testing.T) {
}
func TestSaver2_1RelationshipWrapsCommentMultiLine(t *testing.T) {
- rln := &spdx.Relationship2_1{
- RefA: spdx.MakeDocElementID("", "DOCUMENT"),
- RefB: spdx.MakeDocElementID("", "2"),
+ rln := &v2_1.Relationship{
+ RefA: common.MakeDocElementID("", "DOCUMENT"),
+ RefB: common.MakeDocElementID("", "2"),
Relationship: "DESCRIBES",
RelationshipComment: `this is a
multi-line comment`,