2017-05-01 12:40:34 -04:00
|
|
|
// Copyright 2017 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
2017-07-28 01:28:43 -04:00
|
|
|
"runtime"
|
2017-05-01 12:40:34 -04:00
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2017-05-01 12:40:34 -04:00
|
|
|
)
|
|
|
|
|
2024-01-28 16:34:10 -05:00
|
|
|
type Test struct{}
|
2017-05-01 12:40:34 -04:00
|
|
|
|
|
|
|
func (t *Test) MyTestMethod() string {
|
|
|
|
return "abcde"
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMethodToName(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-05-01 12:40:34 -04:00
|
|
|
test := &Test{}
|
|
|
|
|
2017-07-28 01:28:43 -04:00
|
|
|
if runtime.Compiler == "gccgo" {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(methodToName(test.MyTestMethod), qt.Contains, "thunk")
|
2017-07-28 01:28:43 -04:00
|
|
|
} else {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(methodToName(test.MyTestMethod), qt.Equals, "MyTestMethod")
|
2017-07-28 01:28:43 -04:00
|
|
|
}
|
2017-05-01 12:40:34 -04:00
|
|
|
}
|