Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 233 for attest (0.1 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/JdtTest.groovy

     */
    package org.gradle.plugins.ide.eclipse.model
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.PropertiesTransformer
    
    import spock.lang.Specification
    
    class JdtTest extends Specification {
        final Jdt jdt = new Jdt(new PropertiesTransformer())
    
        def defaultsForJava1_3Source() {
            Properties properties = new Properties()
    
            when:
            jdt.loadDefaults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathTest.groovy

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model
    
    import org.gradle.util.Matchers
    import spock.lang.Specification
    
    class PathTest extends Specification {
        def "paths are equal when they have the same canonical url"() {
            expect:
            Matchers.strictlyEquals(new Path('file://$ROOT_DIR$/file'), new Path('file://$ROOT_DIR$/file'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/groovy/src/test/java/org/gradle/junitplatform/TagTest.java

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/kotlin/src/test/java/org/gradle/junitplatform/TagTest.java

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/AllTestResultsTest.groovy

            when:
            def test = results.addTest(1, 'org.gradle.Test', 'test', 90)
    
            then:
            test.name == 'test'
            test.classResults.name == 'org.gradle.Test'
            test.classResults.packageResults.name == 'org.gradle'
            results.packages.contains(test.classResults.packageResults)
        }
    
        def addsTestInDefaultPackage() {
            when:
            def test = results.addTest(1, 'Test', 'test', 90)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-latest.xml

        <artifactId>com-parent</artifactId>
        <version>LATEST</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of LATEST
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

    import org.gradle.api.InvalidUserDataException
    import spock.lang.Specification
    
    import static org.gradle.util.Matchers.strictlyEquals
    import static org.gradle.util.Path.ROOT
    import static org.gradle.util.Path.path
    
    class PathTest extends Specification {
        def "construction from string"() {
            expect:
            path(':').getPath() == ':'
            path(':').is(Path.ROOT)
            Path.ROOT.getPath() == ':'
            path('a').getPath() == 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/XCTest.java

    import org.gradle.api.tasks.SkipWhenEmpty;
    import org.gradle.api.tasks.testing.AbstractTestTask;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestExecuter;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestSelection;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestTestExecutionSpec;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForTestNgTests/src/test/java/org/gradle/BarTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle;
    
    public class BarTest {
        @org.testng.annotations.Test public void anotherOk() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 723 bytes
    - Viewed (0)
  10. src/go/ast/ast_test.go

    Russ Cox <******@****.***> 1649711949 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top