Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ExpectedDeprecationWarning (0.29 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

     * which may include the keyword "{@code deprecated}" multiple times.
     */
    public abstract class ExpectedDeprecationWarning {
    
        private final int numLines;
    
        public ExpectedDeprecationWarning(int numLines) {
            this.numLines = numLines;
        }
    
        public static ExpectedDeprecationWarning withMessage(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

         * first match is found.
         */
        @Nullable
        private ExpectedDeprecationWarning lastMatchedDeprecationWarning = null;
    
        public ResultAssertion(
            int expectedGenericDeprecationWarnings, List<ExpectedDeprecationWarning> expectedDeprecationWarnings,
            boolean expectStackTraces, boolean checkDeprecations, boolean checkJdkWarnings
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        default GradleExecuter expectDeprecationWarning(String warning) {
            return expectDeprecationWarning(ExpectedDeprecationWarning.withMessage(warning));
        }
    
        default GradleExecuter expectDeprecationWarningWithPattern(String pattern) {
            return expectDeprecationWarning(ExpectedDeprecationWarning.withSingleLinePattern(pattern));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        private boolean disableToolchainDetection = true;
        private boolean disablePluginRepositoryMirror = false;
    
        private int expectedGenericDeprecationWarnings;
        private final List<ExpectedDeprecationWarning> expectedDeprecationWarnings = new ArrayList<>();
        private boolean eagerClassLoaderCreationChecksOn = true;
        private boolean stackTraceChecksOn = true;
        private boolean jdkWarningChecksOn = false;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top