aboutsummaryrefslogtreecommitdiff
path: root/utils/clen_test.go
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-23 16:51:22 +0200
committerJulien Dessaux2021-04-23 16:51:22 +0200
commit38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 (patch)
treed3f7167fae6388f4db35a63e660d1816c9c2943e /utils/clen_test.go
parentFixed wrongfully hardcoded path in tests. (diff)
downloadbareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.gz
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.bz2
bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.zip
Updated for go 1.16 modules1.2
Diffstat (limited to 'utils/clen_test.go')
-rw-r--r--utils/clen_test.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/utils/clen_test.go b/utils/clen_test.go
deleted file mode 100644
index 19361b0..0000000
--- a/utils/clen_test.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package utils
-
-import "testing"
-
-func TestClen(t *testing.T) {
- normalString := append([]byte("abcd"), 0)
- type args struct {
- n []byte
- }
- tests := []struct {
- name string
- args args
- want int
- }{
- {"empty string", args{}, 0},
- {"normal string", args{normalString}, 4},
- {"non null terminated string", args{[]byte("abcd")}, 4},
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- if got := Clen(tt.args.n); got != tt.want {
- t.Errorf("Clen() = %v, want %v", got, tt.want)
- }
- })
- }
-}