This project is a simple API testing application built using Java and Gradle.
api-test
├── build.gradle
├── settings.gradle
├── gradle.properties
├── gradlew
├── gradlew.bat
├── gradle
│ └── wrapper
│ └── gradle-wrapper.properties
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── App.java
│ │ └── resources
│ │ └── application.properties
│ └── test
│ ├── java
│ │ └── com
│ │ └── example
│ │ └── AppTest.java
│ └── resources
├── .gitignore
└── README.md
-
Clone the repository:
git clone <repository-url> -
Navigate to the project directory:
cd api-test -
Run the Gradle wrapper to build the project:
./gradlew buildor for Windows:
gradlew.bat build
To run the application, use the following command:
./gradlew run
or for Windows:
gradlew.bat run
To run the tests, execute:
./gradlew test
or for Windows:
gradlew.bat test
This project is licensed under the MIT License. See the LICENSE file for details.