Best Mockito code snippet using org.mockitousage.stubbing.StubbingReturnsSelfTest.returnInt
Source:StubbingReturnsSelfTest.java
...47 }48 @Test49 public void should_not_fail_when_calling_primitive_returning_method() {50 StubbingReturnsSelfTest.Builder builder = Mockito.mock(StubbingReturnsSelfTest.Builder.class, Mockito.RETURNS_SELF);51 assertThat(builder.returnInt()).isEqualTo(0);52 }53 @Test54 public void use_full_builder_with_terminating_method() {55 StubbingReturnsSelfTest.HttpBuilder builder = Mockito.mock(StubbingReturnsSelfTest.HttpBuilder.class, Mockito.RETURNS_SELF);56 StubbingReturnsSelfTest.HttpRequesterWithHeaders requester = new StubbingReturnsSelfTest.HttpRequesterWithHeaders(builder);57 String response = "StatusCode: 200";58 Mockito.when(builder.request()).thenReturn(response);59 assertThat(requester.request("URI")).isEqualTo(response);60 }61 private static class Builder {62 public StubbingReturnsSelfTest.Builder returnSelf() {63 return this;64 }65 public String returnString() {66 return "Self";67 }68 public void returnNothing() {69 }70 public int returnInt() {71 return 1;72 }73 }74 private static class BuilderSubClass extends StubbingReturnsSelfTest.Builder {75 public StubbingReturnsSelfTest.BuilderSubClass returnsSubClass() {76 return this;77 }78 public StubbingReturnsSelfTest.Builder returnSuperClass() {79 return this;80 }81 }82 private static class HttpRequesterWithHeaders {83 private StubbingReturnsSelfTest.HttpBuilder builder;84 public HttpRequesterWithHeaders(StubbingReturnsSelfTest.HttpBuilder builder) {...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!