Quellcode durchsuchen

[DO NOT MERGE] testing sonar code coverage

Signed-off-by: Alex Meijer <ameijer@kubecost.com>
Alex Meijer vor 2 Jahren
Ursprung
Commit
94c236c21a
1 geänderte Dateien mit 23 neuen und 0 gelöschten Zeilen
  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())
 }