2019-08-30 17:20:26 +00:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-09-16 16:57:27 +00:00
|
|
|
package impl_test
|
2019-08-30 17:20:26 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-05-23 20:12:23 +00:00
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
2019-09-16 16:57:27 +00:00
|
|
|
|
|
|
|
testpb "google.golang.org/protobuf/internal/testprotos/test"
|
2019-08-30 17:20:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEnum(t *testing.T) {
|
|
|
|
et := testpb.ForeignEnum_FOREIGN_FOO.Type()
|
2022-05-23 20:12:23 +00:00
|
|
|
if got, want := et.New(protoreflect.EnumNumber(testpb.ForeignEnum_FOREIGN_FOO)), protoreflect.Enum(testpb.ForeignEnum_FOREIGN_FOO); got != want {
|
2019-08-30 17:20:26 +00:00
|
|
|
t.Errorf("testpb.ForeignEnum_FOREIGN_FOO.Type().New() = %[1]T(%[1]v), want %[2]T(%[2]v)", got, want)
|
|
|
|
}
|
|
|
|
}
|