mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
429 B
30 lines
429 B
7 years ago
|
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)
|
||
|
}
|