setTestCase method

void setTestCase({
  1. required STATE beforeState,
  2. required List<SMAssertObject<STATE, ACTION>> testCases,
})

Sets the test case.

Implementation

void setTestCase({
  required STATE beforeState,
  required List<SMAssertObject<STATE, ACTION>> testCases,
}) {
  _testCases[beforeState] = testCases;
}