diff --git a/test/container_single_test.go b/test/container_single_test.go index 7cdf8aad6..546fc7819 100644 --- a/test/container_single_test.go +++ b/test/container_single_test.go @@ -33,7 +33,7 @@ func TestSingle(t *testing.T) { assert.False(t, container.IsRegister[IDatabase]("oracle")) assert.False(t, container.IsRegister[error]("oracle")) - mysqlAny := container.ResolveType(reflect.TypeOf((*IDatabase)(nil))) + mysqlAny, _ := container.ResolveType(reflect.TypeOf((*IDatabase)(nil))) assert.NotNil(t, mysqlAny.(*mysql)) // 取一个不存在的别名的实例 diff --git a/test/try_test.go b/test/try_test.go index e658b856b..3305d4b78 100644 --- a/test/try_test.go +++ b/test/try_test.go @@ -18,9 +18,9 @@ func TestTry(t *testing.T) { assert.Panics(t, func() { exception.ThrowWebExceptionf(502, "%d", 123) }) - }).CatchWebException(func(exp *exception.WebException) { + }).CatchWebException(func(exp exception.WebException) { os.Exit(-1) - }).CatchRefuseException(func(exp *exception.RefuseException) { + }).CatchRefuseException(func(exp exception.RefuseException) { os.Exit(-1) }).CatchStringException(func(exp string) { os.Exit(-1) @@ -30,9 +30,9 @@ func TestTry(t *testing.T) { exception.Try(func() { exception.ThrowException("aaa") - }).CatchWebException(func(exp *exception.WebException) { + }).CatchWebException(func(exp exception.WebException) { os.Exit(-1) - }).CatchRefuseException(func(exp *exception.RefuseException) { + }).CatchRefuseException(func(exp exception.RefuseException) { os.Exit(-1) }).CatchStringException(func(exp string) { assert.Equal(t, "aaa", exp) @@ -42,11 +42,11 @@ func TestTry(t *testing.T) { exception.Try(func() { exception.ThrowRefuseException("aaa") - }).CatchWebException(func(exp *exception.WebException) { + }).CatchWebException(func(exp exception.WebException) { os.Exit(-1) }).CatchStringException(func(exp string) { os.Exit(-1) - }).CatchRefuseException(func(exp *exception.RefuseException) { + }).CatchRefuseException(func(exp exception.RefuseException) { assert.Equal(t, "aaa", exp.Message) }).CatchException(func(exp any) { os.Exit(-1) @@ -56,9 +56,9 @@ func TestTry(t *testing.T) { exception.ThrowWebException(502, "aaa") }).CatchStringException(func(exp string) { os.Exit(-1) - }).CatchRefuseException(func(exp *exception.RefuseException) { + }).CatchRefuseException(func(exp exception.RefuseException) { os.Exit(-1) - }).CatchWebException(func(exp *exception.WebException) { + }).CatchWebException(func(exp exception.WebException) { assert.Equal(t, "aaa", exp.Message) assert.Equal(t, 502, exp.StatusCode) }).CatchException(func(exp any) { @@ -68,7 +68,7 @@ func TestTry(t *testing.T) { try := exception.Try(func() { exception.ThrowRefuseException("aaa") }) - try.CatchRefuseException(func(exp *exception.RefuseException) { + try.CatchRefuseException(func(exp exception.RefuseException) { panic("aaa") }) try.CatchException(func(exp any) {