mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-24 04:24:02 +00:00
14 lines
360 B
Go
14 lines
360 B
Go
// ⚡️ Fiber is an Express inspired web framework written in Go with ☕️
|
|
// 🤖 Github Repository: https://github.com/gofiber/fiber
|
|
// 📌 API Documentation: https://docs.gofiber.io
|
|
|
|
package utils
|
|
|
|
import "testing"
|
|
|
|
func Test_AssertEqual(t *testing.T) {
|
|
t.Parallel()
|
|
AssertEqual(nil, []string{}, []string{})
|
|
AssertEqual(t, []string{}, []string{})
|
|
}
|