Coder Social home page Coder Social logo

Comments (7)

pdrum avatar pdrum commented on May 29, 2024

I just faced the same issue

from moq.

jasonhancock avatar jasonhancock commented on May 29, 2024

just bumped into this myself.

from moq.

matryer avatar matryer commented on May 29, 2024

OK I'll see if I can figure out what's going on.

from moq.

matryer avatar matryer commented on May 29, 2024

@jasonhancock @pdrum @noodlensk Can you please update and check this again? #62 may have fixed it.

from moq.

pdrum avatar pdrum commented on May 29, 2024

I checked it and it seems to have been fixed.

Input

package sample

import "sandbox/sample/sample"

//go:generate moq . Interface
type Interface interface {
	DoThing(number sample.Number)
}

and

package sample

type Number int

Output

// Code generated by moq; DO NOT EDIT.
// github.com/matryer/moq

package sample

import (
	"sandbox/sample/sample"
	"sync"
)

var (
	lockInterfaceMockDoThing sync.RWMutex
)

// InterfaceMock is a mock implementation of Interface.
//
//     func TestSomethingThatUsesInterface(t *testing.T) {
//
//         // make and configure a mocked Interface
//         mockedInterface := &InterfaceMock{
//             DoThingFunc: func(number sample.Number)  {
// 	               panic("TODO: mock out the DoThing method")
//             },
//         }
//
//         // TODO: use mockedInterface in code that requires Interface
//         //       and then make assertions.
//
//     }
type InterfaceMock struct {
	// DoThingFunc mocks the DoThing method.
	DoThingFunc func(number sample.Number)

	// calls tracks calls to the methods.
	calls struct {
		// DoThing holds details about calls to the DoThing method.
		DoThing []struct {
			// Number is the number argument value.
			Number sample.Number
		}
	}
}

// DoThing calls DoThingFunc.
func (mock *InterfaceMock) DoThing(number sample.Number) {
	if mock.DoThingFunc == nil {
		panic("InterfaceMock.DoThingFunc: method is nil but Interface.DoThing was just called")
	}
	callInfo := struct {
		Number sample.Number
	}{
		Number: number,
	}
	lockInterfaceMockDoThing.Lock()
	mock.calls.DoThing = append(mock.calls.DoThing, callInfo)
	lockInterfaceMockDoThing.Unlock()
	mock.DoThingFunc(number)
}

// DoThingCalls gets all the calls that were made to DoThing.
// Check the length with:
//     len(mockedInterface.DoThingCalls())
func (mock *InterfaceMock) DoThingCalls() []struct {
	Number sample.Number
} {
	var calls []struct {
		Number sample.Number
	}
	lockInterfaceMockDoThing.RLock()
	calls = mock.calls.DoThing
	lockInterfaceMockDoThing.RUnlock()
	return calls
}

from moq.

jasonhancock avatar jasonhancock commented on May 29, 2024

Looks good on my end as well

from moq.

sudo-suhas avatar sudo-suhas commented on May 29, 2024

Closing as this specific issue was solved in #62.

from moq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.