-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial commit of Webttle code covering Execution flow and Preview Rows #9212
base: BACKLOG-39660
Are you sure you want to change the base?
Initial commit of Webttle code covering Execution flow and Preview Rows #9212
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't change anything that is not our code, even indentations
import java.io.IOException; | ||
import java.io.PrintWriter; | ||
import java.util.List; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add class java doc here
import java.io.PrintWriter; | ||
import java.util.List; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add class level javadoc here
@@ -184,7 +185,7 @@ public void doGetTransformationNotFoundTest() throws Exception { | |||
HttpServletRequest mockHttpServletRequest = mock( HttpServletRequest.class ); | |||
HttpServletResponse mockHttpServletResponse = mock( HttpServletResponse.class ); | |||
Trans trans = initMocksForTransExecution( mockHttpServletRequest, mockHttpServletResponse ); | |||
doThrow( new KettleException( "Unable to find transformation" ) ).when( executeTransServlet ).executeTrans( trans ); | |||
doThrow( new KettleException( "Unable to find transformation" ) ).when( executeTransServlet ).executeTrans( trans, new HashMap<>()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think better to override this method for our approach and handle it java rather than doing it in test class
This is the first commit for Kettle engine related changes related to "Webttle". This contains: