├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── test ├── java └── rest │ └── api │ └── test │ ├── BaseApiTest.java │ └── community │ ├── CommunityCommentRestApiTest.java │ └── CommunityIdeaRestApiTest.java └── resources └── smoke-suite.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'api-testautomation' 2 | 3 | -------------------------------------------------------------------------------- /src/test/java/rest/api/test/BaseApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/src/test/java/rest/api/test/BaseApiTest.java -------------------------------------------------------------------------------- /src/test/java/rest/api/test/community/CommunityCommentRestApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/src/test/java/rest/api/test/community/CommunityCommentRestApiTest.java -------------------------------------------------------------------------------- /src/test/java/rest/api/test/community/CommunityIdeaRestApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/src/test/java/rest/api/test/community/CommunityIdeaRestApiTest.java -------------------------------------------------------------------------------- /src/test/resources/smoke-suite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiromia006/api-testautomation/HEAD/src/test/resources/smoke-suite.xml --------------------------------------------------------------------------------