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())
Click to show internal directories.
Click to hide internal directories.