CurryInfo: currycheck-4.0.0 / CurryCheck.orgTestName

definition:
orgTestName :: QName -> QName
orgTestName (mn,tname)
  | defTypeSuffix `isSuffixOf` tname
  = orgTestName (mn, stripSuffix tname defTypeSuffix)
  | isDetSuffix `isSuffixOf` tname
  = orgTestName (mn, take (length tname - 15) tname)
  | postCondSuffix `isSuffixOf` tname
  = orgTestName (mn, stripSuffix tname postCondSuffix)
  | satSpecSuffix `isSuffixOf` tname
  = orgTestName (mn, stripSuffix tname satSpecSuffix)
  | otherwise = (mn,tname)
demand:
argument 1
deterministic:
deterministic operation
documentation:
-- Transforms a possibly changed test name (like "test_ON_BASETYPE")
-- back to its original name.
indeterministic:
referentially transparent operation
infix:
no fixity defined
name:
orgTestName
precedence:
no precedence defined
result-values:
{(,)}
signature:
(String, String) -> (String, String)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term