Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 2.33 KB

README.md

File metadata and controls

54 lines (46 loc) · 2.33 KB

Testist

CI Hits-of-Code codecov Maven Central javadoc

Library with some basic classes that allows to create a testing applications for students.

Getting Started

System Requirements

  • JDK 17 or higher.
  • Apache Maven 3.8.3 or higher

Add Maven Dependency

If you use Maven, add the following configuration to your project's pom.xml

<dependencies>
    <!-- other dependencies are there -->
    <dependency>
        <groupId>com.github.aistomin</groupId>
        <artifactId>testist</artifactId>
        <version>1.0</version>
    </dependency>
    <!-- other dependencies are there -->
</dependencies>

or, if you use Gradle, add the following line to your build file:

compile 'com.github.aistomin:testist:1.0'

Licence

The project is licensed under the terms of the Apache License, Version 2.0.

Have You Found a Bug? Do You Have Any Suggestions?

Although we try our best, we're not robots and bugs are possible :) Also we're always happy to hear some suggestions, ideas, thoughts from you. Don't hesitate to create an issue. It will help us to make our project better. Thank you in advance!!!

How to Contribute

Do you want to help us with the project? We will be more than just happy. Please: fork the repository, make changes, submit a pull request. We promise to review your changes in the next couple of days and merge them to the master branch, if they look correct. To avoid frustration, before sending us your pull request please run full Maven build:

$ mvn clean install package javadoc:javadoc

Keep in mind our system requirements.