prysm-pulse/shared/featureconfig/flags_test.go
terence tsao 0544dd1f8e
Applies assertion funcs to shared tests (#6643)
* cmd tests
* deposit util tests
* feature config tests
* hashutil tests
* htr util tests
* interop tests
* ip util tests
2020-07-19 21:08:29 +00:00

19 lines
473 B
Go

package featureconfig
import (
"reflect"
"strings"
"testing"
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
)
func TestDeprecatedFlags(t *testing.T) {
for _, f := range deprecatedFlags {
fv := reflect.ValueOf(f)
field := reflect.Indirect(fv).FieldByName("Hidden")
assert.Equal(t, false, !field.IsValid() || !field.Bool())
assert.Equal(t, false, !strings.Contains(reflect.Indirect(fv).FieldByName("Usage").String(), "DEPRECATED. DO NOT USE."))
}
}