├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE.txt ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── sonar-project.properties └── src ├── main ├── java │ └── eu │ │ └── europa │ │ └── eusurvey │ │ └── katalon │ │ ├── KatalonApplication.java │ │ ├── controllers │ │ └── SingleController.java │ │ └── utils │ │ └── DateTimeParser.java └── resources │ └── application.properties └── test ├── java └── eu │ └── europa │ └── eusurvey │ └── katalon │ ├── KatalonApplicationTests.java │ ├── controllers │ └── SingleControllerTest.java │ └── utils │ └── DateTimeParserTest.java └── resources ├── execution.properties ├── sample_directory ├── 20180629_091216 │ ├── JUnit_Report.xml │ └── execution.properties ├── 20180629_091225 │ ├── JUnit_Report.xml │ └── execution.properties └── 20180629_091226 │ ├── JUnit_Report.xml │ └── execution.properties ├── sample_directory_error └── 20180629_091216 │ └── execution.properties └── sample_report_directory └── Create Survey and Form Runner ├── 20180716_145202 ├── JUnit_Report.xml └── execution.properties ├── 20180716_145428 ├── JUnit_Report.xml └── execution.properties └── 20180716_150024 ├── JUnit_Report.xml └── execution.properties /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/pom.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/main/java/eu/europa/eusurvey/katalon/KatalonApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/main/java/eu/europa/eusurvey/katalon/KatalonApplication.java -------------------------------------------------------------------------------- /src/main/java/eu/europa/eusurvey/katalon/controllers/SingleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/main/java/eu/europa/eusurvey/katalon/controllers/SingleController.java -------------------------------------------------------------------------------- /src/main/java/eu/europa/eusurvey/katalon/utils/DateTimeParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/main/java/eu/europa/eusurvey/katalon/utils/DateTimeParser.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/test/java/eu/europa/eusurvey/katalon/KatalonApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/java/eu/europa/eusurvey/katalon/KatalonApplicationTests.java -------------------------------------------------------------------------------- /src/test/java/eu/europa/eusurvey/katalon/controllers/SingleControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/java/eu/europa/eusurvey/katalon/controllers/SingleControllerTest.java -------------------------------------------------------------------------------- /src/test/java/eu/europa/eusurvey/katalon/utils/DateTimeParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/java/eu/europa/eusurvey/katalon/utils/DateTimeParserTest.java -------------------------------------------------------------------------------- /src/test/resources/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091216/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091216/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091216/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091216/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091225/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091225/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091225/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091225/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091226/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091226/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_directory/20180629_091226/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory/20180629_091226/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_directory_error/20180629_091216/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_directory_error/20180629_091216/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145202/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145202/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145202/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145202/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145428/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145428/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145428/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_145428/execution.properties -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_150024/JUnit_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_150024/JUnit_Report.xml -------------------------------------------------------------------------------- /src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_150024/execution.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EUSurvey/KatalonServer/HEAD/src/test/resources/sample_report_directory/Create Survey and Form Runner/20180716_150024/execution.properties --------------------------------------------------------------------------------