func testCallingStubReturnsDefaultValueOnUnsuccessfulStubMatching() {
    // Given
    let _ = mockImplementation.when().call(withReturnValue: mockImplementation.doSomethingWithNonOptionalArguments("one", arg2: 1)).thenReturn(42)

    // When