1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
gf/errors/gcode/gcode_test.go

24 lines
607 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gcode_test
import (
"github.com/gogf/gf/errors/gcode"
"testing"
"github.com/gogf/gf/test/gtest"
)
func Test_Nil(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
c := gcode.New(1, "custom error", "detailed description")
t.Assert(c.Code(), 1)
t.Assert(c.Message(), "custom error")
t.Assert(c.Detail(), "detailed description")
})
}