public TestDescription(string name, string author, int time, ETestMode mode, DateTime date) { Name = name; Author = author; Time = time; Mode = mode; Date = date; }
/** * must be called before making any dice roll testing */ public void initiateNewTest(ETestMode mode) { switch (mode) { case ETestMode.instant: break; case ETestMode.prolonged: break; case ETestMode.custom: break; } }