Sergei Makarov

Results 8 issues of Sergei Makarov

**Actual result:** Duplication **Expected result:** Should be without duplication ``` func TestExampleSingleTest_AllureProviderT(t *testing.T) { runner.Run(t, "Single test", func(t provider.T) { }) } ``` ![image](https://user-images.githubusercontent.com/33636772/179044463-107e9535-9de9-4c2e-9837-3ad524e6c92d.png)

If use multi step feature in Suite: ``` func (i *ExampleSuite) TestExample_TwoSteps(t provider.T) { var ( testBuilder = i.testMaker.NewTestBuilder() ) testBuilder. Title("TestExample_TwoSteps"). Tags("TestExample_TwoSteps", "some_tag"). Parallel(). CreateWithStep(). // CreateWithStep first step...

bug

Reimplement these methods like `Require` and `Assert`, e.g. `ExpectJSONSchemaString` => `AssertJSONSchemaString` and `RequireJSONSchemaString` ```go func (qt *cute) ExpectExecuteTimeout(t time.Duration) ExpectHTTPBuilder { qt.tests[qt.countTests].Expect.ExecuteTime = t return qt } func (qt *cute)...

good first issue

How implement struct for put in crud request? Example with map ``` insert := crud.MakeInsertObjectRequest("user"). Object( crud.MapObject(map[string]interface{}{ "id": userUUID, "created_at": time.Now().Unix(), "buc1ket_id": nil, })). Context(ctx) ``` But i want implement...

documentation
1sp
teamE

fix https://github.com/ozontech/cute/issue-73

Need to replace `[]error` by `https://pkg.go.dev/errors#Join`