Suite constructor

Suite(
  1. String path,
  2. String? platform,
  3. Iterable<Test> allTests
)

Create a Suite with the given path, platform and allTests.

Implementation

Suite(this.path, this.platform, Iterable<Test> allTests)
    : allTests = List.unmodifiable(allTests);