mocks

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 26, 2019 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IssuerMock

type IssuerMock struct {
	// IssueFunc mocks the Issue method.
	IssueFunc func(in1 context.Context, in2 string, in3 *certify.CertConfig) (*tls.Certificate, error)
	// contains filtered or unexported fields
}

IssuerMock is a mock implementation of Issuer.

    func TestSomethingThatUsesIssuer(t *testing.T) {

        // make and configure a mocked Issuer
        mockedIssuer := &IssuerMock{
            IssueFunc: func(in1 context.Context, in2 string, in3 *certify.CertConfig) (*tls.Certificate, error) {
	               panic("mock out the Issue method")
            },
        }

        // use mockedIssuer in code that requires Issuer
        // and then make assertions.

    }

func (*IssuerMock) Issue

func (mock *IssuerMock) Issue(in1 context.Context, in2 string, in3 *certify.CertConfig) (*tls.Certificate, error)

Issue calls IssueFunc.

func (*IssuerMock) IssueCalls

func (mock *IssuerMock) IssueCalls() []struct {
	In1 context.Context
	In2 string
	In3 *certify.CertConfig
}

IssueCalls gets all the calls that were made to Issue. Check the length with:

len(mockedIssuer.IssueCalls())

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL