mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 01:38:24 -05:00
30 lines
429 B
Go
30 lines
429 B
Go
|
package common_test
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"testing"
|
||
|
|
||
|
. "v2ray.com/core/common"
|
||
|
. "v2ray.com/ext/assert"
|
||
|
)
|
||
|
|
||
|
func TestMust(t *testing.T) {
|
||
|
assert := With(t)
|
||
|
|
||
|
f := func() error {
|
||
|
return errors.New("test error")
|
||
|
}
|
||
|
|
||
|
assert(func() { Must(f()) }, Panics)
|
||
|
}
|
||
|
|
||
|
func TestMust2(t *testing.T) {
|
||
|
assert := With(t)
|
||
|
|
||
|
f := func() (interface{}, error) {
|
||
|
return nil, errors.New("test error")
|
||
|
}
|
||
|
|
||
|
assert(func() { Must2(f()) }, Panics)
|
||
|
}
|