We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package main import ( "fmt" "github.com/agiledragon/gomonkey/v2" . "github.com/smartystreets/goconvey/convey" "reflect" "testing" ) type A struct { B *B } func (a *A) TestA() { fmt.Println(a.B.TestB()) fmt.Println(2) } type B struct { } func (*B) TestB() int { return 1 } func TestSpec(t *testing.T) { Convey("Test Spec", t, func() { b := &B{} patches := gomonkey.ApplyMethod(reflect.TypeOf(b), "TestB", func(_ *B) int { return 3 }) defer patches.Reset() a := A{B: b} a.TestA() }) }
output
1 2
but it should be 3 2 , why not works???
The text was updated successfully, but these errors were encountered:
try '-gcflags=all=-N -l' to close inline
Sorry, something went wrong.
i tried it. it`s working now
extremely grateful
No branches or pull requests
output
but it should be 3 2 , why not works???
The text was updated successfully, but these errors were encountered: