TestType

enum class TestType: Enum<TestType>

Enum representing the types of tests that DP supports:

  • Student tests - unit tests written by the students to test their own work;
  • Teacher - unit tests written by the teachers to test the student's work; The detailed results of these tests are always shown to the students.
  • Hidden Teacher Tests - unit tests written by the teachers; The results of these tests can be partially visible to the students or not (configurable when creating the assignment).

EnumItems

Name Description
STUDENT
TEACHER
HIDDEN