I'm creating ui tests in xcode using XCTest(Swift) How can I run, for example, 2-3 tests from one class without launching the rest of the test from this class? Is it possible to add some tests to suite or run and run from command line just necessary suite/run?
According to the XCTestSuite documentation there is an option to create a custom test suite, but I haven't found any examples of it.