Просмотр исходного кода

[DO NOT MERGE] testing sonar code coverage

Signed-off-by: Alex Meijer <ameijer@kubecost.com>
Alex Meijer 2 лет назад
Родитель
Сommit
94c236c21a
1 измененных файлов с 23 добавлено и 0 удалено
  1. 23 0
      pkg/filter/not.go

+ 23 - 0
pkg/filter/not.go

@@ -8,6 +8,29 @@ type Not[T any] struct {
 }
 
 func (n Not[T]) String() string {
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
+	fmt.Print("test")
 	return fmt.Sprintf("(not %s)", n.Filter.String())
 }