aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/category_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/category_test.go')
-rw-r--r--internal/cvss/category_test.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/internal/cvss/category_test.go b/internal/cvss/category_test.go
deleted file mode 100644
index 7f69689..0000000
--- a/internal/cvss/category_test.go
+++ /dev/null
@@ -1,41 +0,0 @@
-package cvss
-
-import "testing"
-
-func TestCategoryString(t *testing.T) {
- tests := []struct {
- cat Category
- exp string
- } {
- { Base, "Base" },
- { Temporal, "Temporal" },
- { Environmental, "Environmental" },
- }
-
- for _, test := range(tests) {
- t.Run(test.exp, func(t *testing.T) {
- got := test.cat.String()
- if got != test.exp {
- t.Errorf("got: %s, exp: %s", got, test.exp)
- }
- })
- }
-}
-
-func TestInvalidCategory(t *testing.T) {
- tests := []struct {
- cat Category
- exp string
- } {
- { Category(byte(255)), "Category(255)" },
- }
-
- for _, test := range(tests) {
- t.Run(test.exp, func(t *testing.T) {
- got := test.cat.String()
- if got != test.exp {
- t.Errorf("got: %s, exp: %s", got, test.exp)
- }
- })
- }
-}