-
Notifications
You must be signed in to change notification settings - Fork 22
Added Gradle config support for JUnit 4 & 5 #34
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
Added Gradle config support for JUnit 4 & 5 #34
Conversation
| run: | | ||
| cd junit-5/ios | ||
| gradle clean sampleTest | ||
| - name: Run gradle sample-local-test for junit4 ios |
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.
| - name: Run gradle sample-local-test for junit4 ios | |
| - name: Run gradle sample-local-test for junit5 ios |
README.md
Outdated
| - If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi) | ||
| - For installation, follow the instructions [here](https://maven.apache.org/install.html) | ||
|
|
||
| 3. Gradle |
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.
maven and gradle should be downloaded alternatively right and presence of both is not required. Can we update th readme accordingly.
README.md
Outdated
| - Junit5 | ||
| - Update `browserstack.yml` file at root level of [Android Junit5 examples](junit-5/android) or [iOS Junit5 examples](junit-5/ios) with your [BrowserStack Username and Access Key](https://www.browserstack.com/accounts/settings) | ||
| - Run `mvn test -P sample-test` |
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.
inconsistency in instruction here
junit-4/android/build.gradle
Outdated
| include 'com/browserstack/LocalTest*' | ||
|
|
||
| jvmArgs "-javaagent:${configurations.testRuntimeClasspath.find { it.name.contains('browserstack-java-sdk') }}" | ||
| } No newline at end of file |
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.
need empty line here
junit-4/android/settings.gradle
Outdated
| } | ||
| } | ||
| } | ||
| } No newline at end of file |
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.
empty line
junit-4/ios/build.gradle
Outdated
| include 'com/browserstack/LocalTest*' | ||
|
|
||
| jvmArgs "-javaagent:${configurations.testRuntimeClasspath.find { it.name.contains('browserstack-java-sdk') }}" | ||
| } No newline at end of file |
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.
new line
junit-4/ios/settings.gradle
Outdated
| } | ||
| } | ||
| } | ||
| } No newline at end of file |
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.
new line
JIRA :- https://browserstack.atlassian.net/browse/AAP-15642
Added build.gradle and settings.gradle for gradle config
Updated Readme and workflow for steps to run tests using gradle.