Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for testminio (0.26 sec)

  1. internal/event/target/nats_contrib_test.go

    	if err != nil {
    		t.Errorf("Could not connect to nats: %v", err)
    	}
    	defer con.Close()
    }
    
    func TestNatsConnUserPass(t *testing.T) {
    	opts := natsserver.DefaultTestOptions
    	opts.Port = 14223
    	opts.Username = "testminio"
    	opts.Password = "miniotest"
    	s := natsserver.RunServer(&opts)
    	defer s.Shutdown()
    
    	clientConfig := &NATSArgs{
    		Enable: true,
    		Address: xnet.Host{
    			Name:      "localhost",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    
     private:
      // LocalTestInfo structure keeps information about a single test registered
      // with TEST_P macro.
      struct TestInfo {
        TestInfo(const char* a_test_case_base_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    
     private:
      // LocalTestInfo structure keeps information about a single test registered
      // with TEST_P macro.
      struct TestInfo {
        TestInfo(const char* a_test_case_base_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-barebone/tests/org/jetbrains/kotlin/analysis/api/impl/barebone/test/AbstractCompilerBasedTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.TestInfo
    
    abstract class AbstractCompilerBasedTest : AbstractKotlinCompilerTest() {
        private var _disposable: Disposable? = null
        protected val disposable: Disposable get() = _disposable!!
    
        @BeforeEach
        fun initDisposable(testInfo: TestInfo) {
            _disposable = Disposer.newDisposable("disposable for ${testInfo.displayName}")
        }
    
        @AfterEach
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 10:30:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/junitplatform-jupiter/kotlin/src/test/java/org/gradle/junitplatform/JupiterTest.java

            throw new RuntimeException("This won't happen!");
        }
    
        @Test
        @DisplayName("TEST 1")
        @Tag("my-tag")
        void test1(TestInfo testInfo) {
            assertEquals("TEST 1", testInfo.getDisplayName());
            assertTrue(testInfo.getTags().contains("my-tag"));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 945 bytes
    - Viewed (0)
  8. pkg/volume/util/fs/fs_windows_test.go

    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    	if size.Cmp(used) != 0 {
    		t.Fatalf("TestDiskUsage failed: expected 0, got %d", size.Cmp(used))
    	}
    }
    
    func TestInfo(t *testing.T) {
    	dir1, err := os.MkdirTemp("", "dir_1")
    	if err != nil {
    		t.Fatalf("TestInfo failed: %s", err.Error())
    	}
    	defer os.RemoveAll(dir1)
    
    	// should pass for folder path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                    }
                }
                false
            }
        }
    
        boolean hasTestDescriptor(testInfo) {
            def collect = events.tests.collect { it.descriptor }
            !findTestDescriptors(collect, testInfo.className, testInfo.methodName, testInfo.task, testInfo.displayName).isEmpty()
        }
    
    
        void collectDescriptorsFromBuild() {
            try {
                withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformUserGuideIntegrationTest.groovy

    import org.junit.jupiter.api.*;
    
    @DisplayName("TestInfo Demo")
    class TestInfoDemo {
    
        TestInfoDemo(TestInfo testInfo) {
            assertEquals("TestInfo Demo", testInfo.getDisplayName());
        }
    
        @BeforeEach
        void init(TestInfo testInfo) {
            String displayName = testInfo.getDisplayName();
            assertTrue(displayName.equals("TEST 1") || displayName.equals("test2()"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top