Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestCheckedException (0.28 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaTestSubject.java

        public void throwsException() {
            throw failure;
        }
    
        static class TestCheckedException extends Exception {
            public TestCheckedException(Throwable cause) {
                super(cause);
            }
        }
    
        public void throwsCheckedException() throws TestCheckedException {
            throw new TestCheckedException(failure);
        }
    
        protected String protectedMethod() {
            return "parent";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/JavaMethodTestSubject.java

        public void throwsException() {
            throw failure;
        }
    
        static class TestCheckedException extends Exception {
            public TestCheckedException(Throwable cause) {
                super(cause);
            }
        }
    
        public void throwsCheckedException() throws TestCheckedException {
            throw new TestCheckedException(failure);
        }
    
        protected String protectedMethod() {
            return "parent";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/JavaMethodTest.groovy

            then:
            UncheckedException checkedFailure = thrown()
            checkedFailure.cause instanceof JavaMethodTestSubject.TestCheckedException
            checkedFailure.cause.cause == myProperties.failure
        }
    
        def "call declared method that may not be public"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top