From 19bcc5e8df039f5de0f46fd6aa71e425a5e797bb Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 7 Feb 2022 11:03:09 -0500 Subject: cvss: add severity and tests --- cvss/severity_test.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 cvss/severity_test.go (limited to 'cvss/severity_test.go') diff --git a/cvss/severity_test.go b/cvss/severity_test.go new file mode 100644 index 0000000..632736d --- /dev/null +++ b/cvss/severity_test.go @@ -0,0 +1,26 @@ +package cvss + +import "testing" + +func TestSeverityString(t *testing.T) { + tests := []struct { + val Severity + exp string + } { + { None, "None" }, + { Low, "Low" }, + { Medium, "Medium" }, + { High, "High" }, + { Critical, "Critical" }, + { Severity(255), "Severity(255)" }, + } + + for _, test := range(tests) { + t.Run(test.exp, func(t *testing.T) { + got := test.val.String() + if got != test.exp { + t.Errorf("got \"%s\", exp \"%s\"", got, test.exp) + } + }) + } +} -- cgit v1.2.3