Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for TestSomething (0.4 sec)

  1. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/canCompileAgainstGroovyClassThatDependsOnExternalClass/src/test/groovy/MyGroovyTestCase.groovy

    import groovy.test.GroovyTestCase
    
    // GroovyTestCase depends on external class junit.framework.TestCase
    class MyGroovyTestCase extends GroovyTestCase {
        void testSomething() {
            assert getName() == "testSomething"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 231 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/patch-module/groovy/src/test/java/org/gradle/sample/ModuleBTest.java

    package org.gradle.sample;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class ModuleBTest {
        @Test
        public void testSomething() {
            assertEquals("org.gradle.sample", ModuleB.class.getModule().getName());
            assertEquals("text", new ModuleB().print());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 338 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/customDirs/groovy/test/org/example/SomeTest.java

    package org.example;
    
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class SomeTest {
        @Test
        public void testSomething() {
            fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/patch-module/kotlin/src/test/java/org/gradle/sample/internal/ModuleBInternalTest.java

    package org.gradle.sample.internal;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class ModuleBInternalTest {
        @Test
        public void testSomething() {
            assertEquals("org.gradle.sample", ModuleBInternal.class.getModule().getName());
            assertEquals("internal text", new ModuleBInternal().print());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/customDirs/kotlin/test/org/example/SomeTest.java

    package org.example;
    
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class SomeTest {
        @Test
        public void testSomething() {
            fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

            describe(RunWithSpec.class)*.getDisplayName() == ["CHILD(SUITE)"]
            describe(SuiteMethodSpec.class)*.getDisplayName() == ["testSomething(org.gradle.api.internal.tasks.testing.junit.IgnoredTestDescriptorProviderTest\$TestCaseSpec)"]
            describe(TestCaseSpec.class)*.getDisplayName() == ["testSomething(org.gradle.api.internal.tasks.testing.junit.IgnoredTestDescriptorProviderTest\$TestCaseSpec)"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/testdata/issue56006/repro_test.go

    package main
    
    import "testing"
    
    func TestSomething(t *testing.T) {
    	go infloop()
    	println(blah(1) + blah(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 111 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/patch-module/kotlin/src/test/java/org/gradle/sample/ModuleBTest.java

    package org.gradle.sample;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class ModuleBTest {
        @Test
        public void testSomething() {
            assertEquals("org.gradle.sample", ModuleB.class.getModule().getName());
            assertEquals("text", new ModuleB().print());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 338 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/patch-module/groovy/src/test/java/org/gradle/sample/internal/ModuleBInternalTest.java

    package org.gradle.sample.internal;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class ModuleBInternalTest {
        @Test
        public void testSomething() {
            assertEquals("org.gradle.sample", ModuleBInternal.class.getModule().getName());
            assertEquals("internal text", new ModuleBInternal().print());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/testdata/issue59563/repro_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package repro
    
    import "testing"
    
    func TestSomething(t *testing.T) {
    	small()
    	for i := 0; i < 1001; i++ {
    		large(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 282 bytes
    - Viewed (0)
Back to top