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
Reimplement these methods like Require and Assert, e.g. ExpectJSONSchemaString => AssertJSONSchemaString and RequireJSONSchemaString
Require
Assert
ExpectJSONSchemaString
AssertJSONSchemaString
RequireJSONSchemaString
func (qt *cute) ExpectExecuteTimeout(t time.Duration) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.ExecuteTime = t return qt } func (qt *cute) ExpectStatus(code int) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.Code = code return qt } func (qt *cute) ExpectJSONSchemaString(schema string) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.JSONSchema.String = schema return qt } func (qt *cute) ExpectJSONSchemaByte(schema []byte) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.JSONSchema.Byte = schema return qt } func (qt *cute) ExpectJSONSchemaFile(filePath string) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.JSONSchema.File = filePath return qt }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reimplement these methods like
Require
andAssert
, e.g.ExpectJSONSchemaString
=>AssertJSONSchemaString
andRequireJSONSchemaString
The text was updated successfully, but these errors were encountered: