Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for unit_test (0.28 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
    // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
    GTEST_API_ std::string GetCurrentOsStackTraceExceptTop(
        UnitTest* unit_test, int skip_count);
    
    // Helpers for suppressing warnings on unreachable code or constant
    // condition.
    
    // Always returns true.
    GTEST_API_ bool AlwaysTrue();
    
    // Always returns false.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/groovy/src/test/java/example/UnitTest.java

     * limitations under the License.
     */
    
    package example;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class UnitTest {
        @Test
        public void unitTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 820 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/kotlin/src/test/java/example/UnitTest.java

     * limitations under the License.
     */
    
    package example;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class UnitTest {
        @Test
        public void unitTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 820 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/UnitsTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.performance.measure
    
    import spock.lang.Specification
    
    class UnitsTest extends Specification {
        def "can compare units of same quantity"() {
            def base = Units.base(Void.class, "base")
            def units1 = base.times(12, "units1")
            def units2 = base.times(33, "units2")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/test/cmd/init_test.go

    func TestCmdInitFeatureGates(t *testing.T) {
    	const PanicExitcode = 2
    
    	initTest := []struct {
    		name string
    		args string
    	}{
    		{
    			name: "no feature gates passed",
    			args: "",
    		},
    		{
    			name: "feature gate PublicKeysECDSA=true",
    			args: "--feature-gates=PublicKeysECDSA=true",
    		},
    	}
    
    	for _, rt := range initTest {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/groovy/src/test/java/org/gradle/junitplatform/JUnit4Test.java

    package org.gradle.junitplatform;
    
    import org.junit.*;
    
    public class JUnit4Test {
        @Test
        public void ok() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 123 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/kotlin/src/test/java/org/gradle/junitplatform/JUnit4Test.java

    package org.gradle.junitplatform;
    
    import org.junit.*;
    
    public class JUnit4Test {
        @Test
        public void ok() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 123 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/groovy/src/test/java/org/gradle/junitplatform/JUnit4Test.java

    package org.gradle.junitplatform;
    
    import org.junit.*;
    
    public class JUnit4Test {
        @Test
        public void ok() {
            System.out.println("Hello from JUnit 4!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/groovy/src/test/java/org/gradle/junitplatform/JUnit3Test.java

    package org.gradle.junitplatform;
    
    import junit.framework.TestCase;
    
    public class JUnit3Test extends TestCase {
        public void testOk() {
            System.out.println("Hello from JUnit 3!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/kotlin/src/test/java/org/gradle/junitplatform/JUnit3Test.java

    package org.gradle.junitplatform;
    
    import junit.framework.TestCase;
    
    public class JUnit3Test extends TestCase {
        public void testOk() {
            System.out.println("Hello from JUnit 3!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
Back to top