Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for booltest (0.14 sec)

  1. test/ken/cplx1.go

    		panic("fail")
    	}
    
    	b = C1 != (5 + 6i)
    	if b {
    		println("const bool 4", b)
    		panic("fail")
    	}
    
    	// vars passed through parameters
    	booltest(5+6i, true)
    	booltest(5+7i, false)
    	booltest(6+6i, false)
    	booltest(6+9i, false)
    }
    
    func booltest(a complex64, r bool) {
    	var b bool
    
    	b = a == C1
    	if b != r {
    		println("param bool 1", a, b, r)
    		panic("fail")
    	}
    
    	b = a != C1
    	if b == r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/testsJar/some-thing/src/test/java/FooTest.java

    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class FooTest {
      @Test public void test() {
        assertTrue(true);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 138 bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/LoomTest.kt

    import mockwebserver3.MockWebServer
    import okhttp3.testing.PlatformRule
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class LoomTest {
      @JvmField
      @RegisterExtension
      val platform = PlatformRule()
    
      @JvmField
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
      private lateinit var server: MockWebServer
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/expandProperties/some-thing/src/test/java/FooTest.java

    import org.junit.Test;
    import static junit.framework.Assert.assertFalse;
    
    public class FooTest {
    
      @Test
      public void test() {
        assertFalse(false);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 159 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sourcesJar/some-thing/src/test/java/FooTest.java

    import org.junit.Test;
    
    public class FooTest {
      @Test public void test() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 80 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/singleModule/some-thing/src/test/java/FooTest.java

    import org.junit.Test;
    
    public class FooTest {
      @Test public void test() {
        assert false: "test failure";
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 116 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/javadocJar/some-thing/src/test/java/FooTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import org.junit.Test;
    
    public class FooTest {
      @Test public void test() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 697 bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForTestNgTests/src/test/java/org/gradle/FooTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.testng.Assert;
    
    public class FooTest {
        @org.testng.annotations.Test public void ok() {
            System.out.println("sys out ok");
            System.err.println("sys err ok");
        }
    
        @org.testng.annotations.Test public void fail() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1005 bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

            .containsExactly(Foo.class);
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, FooTest.class), "testNotPublic"))
            .containsExactly(Foo.class);
      }
    
      public void testFindClassesToTest_withCorrespondingTestClassAndExplicitlyTested() {
        ImmutableList<Class<?>> classes = ImmutableList.of(Foo.class, FooTest.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

            .containsExactly(Foo.class);
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, FooTest.class), "testNotPublic"))
            .containsExactly(Foo.class);
      }
    
      public void testFindClassesToTest_withCorrespondingTestClassAndExplicitlyTested() {
        ImmutableList<Class<?>> classes = ImmutableList.of(Foo.class, FooTest.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top