export enum TestCaseDescribe {
  arrowFunctionCase = "arrow function case",
  classicFunctionCase = "classic function case",
  classInstanceCase = "class instance case",
}
export enum TestCommonDescribe {
  noFunctionCommon = "no function common",
  onBeforeCommon = "on before common",
}
export enum TestStrategyResult {
  functionError = "function error result",
  functionSuccess = "function success result",
}
export enum TestStrategyIt {
  callbackEndingStrategy = "callback ending strategy",
  synchronousStrategy = "synchronous strategy",
  promiseStrategy = "promise async strategy",
}
export enum TestCommonIt {
  getNoFunctionalPropertyTestName = "get no functional property test name",
  onBeforeTestName = "one before test name",
  onBeforeResult = "on before result",
  onBeforeResultUndefined = "on before undefined",
}
export enum TestPrefix {
  commonPrefix = "common prefix",
}
