-
Notifications
You must be signed in to change notification settings - Fork 350
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
Feature/java native codegen #266
base: develop
Are you sure you want to change the base?
Feature/java native codegen #266
Conversation
…ta. Updating newman.test run command
…ted code lines
…me key and delete request failing in travis ci
…gs in travis ci
…gs in travis ci
Hi @shreys7 , |
By the way, if(connection instanceof HttpsURLConnection){
con = (HttpsURLConnection) connection;
}else{
con = (HttpURLConnection) connection;
} cab be simplified to |
…-generators into feature/java-native-codegen-review
@danthe1st
I have created another branch and have made the changes. Let me know if I had misinterpreted your comment. |
You can just cast to If you cast a |
…view Feature/java native codegen review
i'd really like to see this - can we all have a status uptade on this? |
Thanks for the contribution @virenderm01. Could you please pull the latest changes from upstream so we can start the review process? |
…-generators into feature/java-native-codegen
@dhwaneetbhatt updated the branch, the confilicts are now resolved. |
@dhwaneetbhatt any update on merging this ? |
@virenderm01 I'm no longer a maintainer of this repository. Please reach out to Postman Support. They should be able to help you. |
Pure Java code generator for issue #155 Issue
The code generator creates snippet in java 8, no other dependencies are required to run the code.
Changes:
Added new code gen with name java-native. All the changes required to generate the code is added under the folder codegen/java-native
The code structure and style is similar to java-okhttp codegen.
Sample Code Snippet
Test Configuration
Unit Tests and newman test are all passing, the log for the same can be found in the below link.
Overall Code coverage is above 85% for tests.
Java native code logs are from line 5246
Travis Build Logs