Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for testIde (0.11 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            buildFile << """
                apply plugin: 'base'
    
                configurations {
                    conf
                }
                dependencies {
                    conf "org.test:dep:" + repoVersion
                }
                task assertVersion {
                    dependsOn configurations.conf
                    doLast {
                        def files = zipTree(configurations.conf.singleFile).files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. docs/pt/docs/features.md

    ### Testado
    
    * 100% <abbr title="A quantidade de código que é testada automaticamente">de cobertura de testes</abbr>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    	}{
    		{
    			name: "label zone failure domain matched",
    			Pod:  createPodWithVolume("pod_1", "PVC_1"),
    			Node: testNode,
    		},
    		{
    			name: "unbound volume empty storage class",
    			Pod:  createPodWithVolume("pod_1", "PVC_EmptySC"),
    			Node: testNode,
    			wantPreFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				"PersistentVolumeClaim had no pv name and storageClass name"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-junit5-test-for-list-library/src/test/java/org/gradle/sample/list/LinkedListTest.java

    public class LinkedListTest {
        @Test public void testConstructor() {
            LinkedList list = new LinkedList();
            assertEquals(0, list.size());
        }
    
        @Test public void testAdd() {
            LinkedList list = new LinkedList();
    
            list.add("one");
            assertEquals(1, list.size());
            assertEquals("one", list.get(0));
    
            list.add("two");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/ssa_test.go

    		t.Skip("not run in short mode.")
    	}
    	runGenTest(t, "flowgraph_generator1.go", "ssa_fg_tmp1")
    }
    
    // TestCode runs all the tests in the testdata directory as subtests.
    // These tests are special because we want to run them with different
    // compiler flags set (and thus they can't just be _test.go files in
    // this directory).
    func TestCode(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	gotool := testenv.GoToolPath(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/src/test/java/org/gradle/PersonTest.java

    import org.junit.Before;
    
    import static org.junit.Assert.assertEquals;
    
    public class PersonTest{
    
        Person person;
        @Before public void setup(){
            person = new Person();
        }
    
        @Test public void testAge() {
            person.setAge(30);
            assertEquals(30, person.getAge());
        }
    
    
        @Test public void testSurname() {
            person.setSurname("Duke");
            assertEquals("Duke", person.getSurname());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 476 bytes
    - Viewed (0)
  7. internal/http/listener_test.go

    	}
    
    	for testIdx, testCase := range testCases {
    		listener, listenErrs := newHTTPListener(context.Background(),
    			testCase.serverAddrs,
    			TCPOptions{},
    		)
    		for i, expectedListenErr := range testCase.expectedListenErrs {
    			if !expectedListenErr {
    				if listenErrs[i] != nil {
    					t.Fatalf("Test %d:, listenErrs[%d] error: expected = <nil>, got = %v", testIdx+1, i, listenErrs[i])
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/multi/list/junit5/LinkedListTest.kt.template

    import org.junit.jupiter.api.Assertions.*
    
    class LinkedListTest {
        @Test fun testConstructor() {
            val list = LinkedList()
            assertEquals(0, list.size())
        }
    
        @Test fun testAdd() {
            val list = LinkedList()
    
            list.add("one")
            assertEquals(1, list.size())
            assertEquals("one", list.get(0))
    
            list.add("two")
            assertEquals(2, list.size())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/list/junit5/LinkedListTest.groovy.template

    import static org.junit.jupiter.api.Assertions.*
    
    class LinkedListTest {
        @Test void testConstructor() {
            def list = new LinkedList()
            assertEquals(0, list.size())
        }
    
        @Test void testAdd() {
            def list = new LinkedList()
    
            list.add('one')
            assertEquals(1, list.size())
            assertEquals('one', list.get(0))
    
            list.add('two')
            assertEquals(2, list.size())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalaapplication/multi/list/junit5/LinkedListTest.scala.template

    import org.junit.jupiter.api.Assertions._
    
    class LinkedListTest {
        @Test def testConstructor(): Unit = {
            val list = new LinkedList()
            assertEquals(0, list.size())
        }
    
        @Test def testAdd(): Unit = {
            val list = new LinkedList()
    
            list.add("one")
            assertEquals(1, list.size())
            assertEquals("one", list.get(0))
    
            list.add("two")
            assertEquals(2, list.size())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top