Testing

Table of Contents

  1. Running tests
  2. Types of tests

1. Running tests

There are two ways to run tests.

Read this Gradle Tutorial from se-edu/guides to learn more about using Gradle.


2. Types of tests

This project uses JUnit testing in IntelliJ.

  1. We test each class and its methods.
    e.g. seedu.modTrackerTest.ParserTest Tests the methods in the Parser class

Home Page