Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for AllTests (0.09 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(UtilTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftapp/LinuxMain.swift.template

    ${fileComment.multilineComment}
    import XCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 90 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftlibrary/LinuxMain.swift.template

    ${fileComment.multilineComment}
    import XCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 88 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/build.gradle.kts

        }
    }
    
    dependencies {
        testReportData(project(":core"))
        testReportData(project(":util"))
    }
    
    tasks.register<TestReport>("testReport") {
        destinationDirectory = reporting.baseDirectory.dir("allTests")
        // Use test results from testReportData configuration
        testResults.from(testReportData)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 648 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/SomeIntegTest.swift

    import XCTest
    
    class SomeIntegTest: XCTestCase {
        public static var allTests = [
            ("test1", test1),
            ("test2", test2)
        ]
        func test1() {}
        func test2() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/testReport/groovy/build.gradle

        }
    }
    
    dependencies {
        testReportData project(':core')
        testReportData project(':util')
    }
    
    tasks.register('testReport', TestReport) {
        destinationDirectory = reporting.baseDirectory.dir('allTests')
        // Use test results from testReportData configuration
        testResults.from(configurations.testReportData)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 867 bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

    import org.junit.internal.runners.JUnit38ClassRunner;
    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runners.AllTests;
    
    import java.util.List;
    
    public class IgnoredTestDescriptorProvider {
        public static List<Description> getAllDescriptions(Description description, String className) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

     *
     * @author Jared Levy
     */
    @GwtIncompatible
    public class TestsForQueuesInJavaUtil {
      public static Test suite() {
        return new TestsForQueuesInJavaUtil().allTests();
      }
    
      public Test allTests() {
        TestSuite suite = new TestSuite();
        suite.addTest(testsForArrayDeque());
        suite.addTest(testsForLinkedList());
        suite.addTest(testsForArrayBlockingQueue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 9.4K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/collect/testing/OpenJdk6ListTests.java

     * OpenJDK 6 bugs.
     *
     * @author Kevin Bourrillion
     */
    public class OpenJdk6ListTests extends TestsForListsInJavaUtil {
      public static Test suite() {
        return new OpenJdk6ListTests().allTests();
      }
    
      @Override
      protected Collection<Method> suppressForArraysAsList() {
        return Arrays.asList(getToArrayIsPlainObjectArrayMethod());
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
Back to top