Become a member
Sign in
Punlop Yeurnyao
Punlop Yeurnyao

Punlop Yeurnyao

29 Following
7 Followers
  • Profile

  • Claps

  • Highlights

Highlighted by Punlop Yeurnyao

See more

From Random Data Generators for API Testing in Java by Himanshu Bahuguna

@Test
public void testDocumentForMetaData() {
EnhancedRandom enhancedRandom = EnhancedRandomBuilder
.aNewEnhancedRandomBuilder()
.objectPoolSize(100)
.stringLengthRange(4, 10)
.build();
Document doc = enhancedRandom.nextObject(Document.class);
Document response = given().
spec(RequestSpec).
body(doc).
post("/document").
as(Document.class);
assertThat(response, sameBeanAs(doc));
});

}

Claps from Punlop Yeurnyao

See more

Flutter — Visual Studio Code Shortcuts for Fast and Efficient Development

Ganesh .s.p

MVVM (Model View ViewModel) + Kotlin + Google Jetpack

Ankit Bisht

Async/Await ใน Array Loops Javascript

Watcharapong Tubjeen