Artur

Results 15 issues of Artur

For example, there is a following DTO in PostgreSQL: ``` create table email ( account_id varchar(100), id varchar(100), recipients recipient[], subject varchar(100), content varchar(100) ); create type recipient as (...

help wanted
requires investigation

Currently there is no `@ToString` in the RequestSpecificationImpl Using following code: ``` @Step("Get car list") public AssertableResponse getCarList( RequestSpecification requestSpecification) { return new AssertableResponse( given() .spec(requestSpecification) .when() .get("cars")); } ```...

Is it possible to filter data by containing string value? For example, having following data in the `my_column`: "Example 1" "This is example 1" "This is" I would like to...

I want to connect by ssh to remote host and execute a script, execution of script could take some time. I am using following command: ``` String response = "";...

There is a method, which returns stream response of Blog: ``` public java.util.Iterator listBlog( com.proto.blog.ListBlogRequest request) { return blockingServerStreamingCall( getChannel(), getListBlogMethod(), getCallOptions(), request); } ``` To print each blog one...

Feature request: Get Random Social Media Get Random YouTube. Example: https://random-ize.com/random-youtube/ https://ytroulette.com Get Random Twitter. Example: https://github.com/faker-ruby/faker/blob/master/doc/default/twitter.md Get Random Instagram photo. Example: http://16gram.com/random/ Get Random Facebook page

**Problem:** Currently, special characters are hardcoded. **Solution:** It would be great if it would be possible to init / set / reload special characters. **Code, where special characters are used:**...

Could you please provide an example how to setup mocking server if a client needs to send and receive multiple data? For example having following proto: ``` syntax = "proto3";...

**Is your feature request related to a problem? Please describe.** Having following code: ``` @Test void testEnconding() { RestAssured.given() .contentType("application/json; charset=UTF-8") .config(RestAssured.config().decoderConfig(decoderConfig().defaultContentCharset("UTF-8"))) .header("Content-Type", "application/json") .filters(new AllureRestAssured()) .body("{\"name\": \"Это тест создание\"}")...

Methods with empty value are not added to the swagger file. Example: ``` @RestController @RequestMapping("/account") public class AccountController { @ApiOperation(value = "Create account", tags = {"Account"}) @PostMapping(value = "", consumes...