remove deprecated functions

This commit is contained in:
John
2019-09-06 16:44:40 +08:00
parent 8fd88307f7
commit 0d5dfe59b9
16 changed files with 3 additions and 273 deletions

View File

@ -9,11 +9,12 @@ package gtest
import (
"fmt"
"github.com/gogf/gf/debug/gdebug"
"os"
"reflect"
"testing"
"github.com/gogf/gf/debug/gdebug"
"github.com/gogf/gf/util/gconv"
)
@ -121,12 +122,6 @@ func AssertGT(value, expect interface{}) {
}
}
// Deprecated.
// See AssertGE.
func AssertGTE(value, expect interface{}) {
AssertGE(value, expect)
}
// AssertGE checks <value> is GREATER OR EQUAL THAN <expect>.
// Notice that, only string, integer and float types can be compared by AssertGTE,
// others are invalid.
@ -173,12 +168,6 @@ func AssertLT(value, expect interface{}) {
}
}
// Deprecated.
// See AssertLE.
func AssertLTE(value, expect interface{}) {
AssertLE(value, expect)
}
// AssertLE checks <value> is LESS OR EQUAL THAN <expect>.
// Notice that, only string, integer and float types can be compared by AssertLTE,
// others are invalid.