github.com/gofiber/fiber/v2@v2.47.0/utils/assertions_test.go (about) 1 // ⚡️ Fiber is an Express inspired web framework written in Go with ☕️ 2 // 🤖 Github Repository: https://github.com/gofiber/fiber 3 // 📌 API Documentation: https://docs.gofiber.io 4 5 package utils 6 7 import ( 8 "testing" 9 ) 10 11 func Test_AssertEqual(t *testing.T) { 12 t.Parallel() 13 AssertEqual(nil, []string{}, []string{}) 14 AssertEqual(t, []string{}, []string{}) 15 }