Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getTestSuiteName (0.15 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceElement.java

            StringBuilder content = new StringBuilder();
            content.append("import XCTest\n");
    
            for (XCTestSourceFileElement testSuite : testSuites) {
                content.append("extension " + testSuite.getTestSuiteName() + " {\n");
                content.append("  public static var allTests = [\n");
                for (XCTestCaseElement testCase : testSuite.getTestCases()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

            return getTestCases().size();
        }
    
        public final String getTestSuiteName() {
            return testSuiteName;
        }
    
        @Override
        public String getSourceSetName() {
            return "test";
        }
    
        @Override
        public SourceFile getSourceFile() {
            return sourceFile("swift", getTestSuiteName() + ".swift",
                    renderImports()
                    + "\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

                    if (testSuiteCache.contains(getTestSuiteName(includedTest))) {
                        it.remove();
                    }
                }
            }
        }
    
        private static boolean isIncludedTestCase(String includedTest) {
            return includedTest.contains("/");
        }
    
        private static String getTestSuiteName(String includedTestCase) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top