Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Kuper (0.13 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingSuperclassChangeRule.groovy

     * </p>
     */
    class BinaryBreakingSuperclassChangeRule extends AbstractSuperClassChangesRule {
    
        BinaryBreakingSuperclassChangeRule(Map<String, Object> params) {
            super(params)
        }
    
        @Override
        protected boolean changed(JApiCompatibility member) {
            return member instanceof JApiClass && !member.superclass.binaryCompatible && !member.superclass.compatibilityChanges.empty
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            apiClass.newClass >> Optional.of(newIncubatingBase)
            newSuper.addInterface(incubatingInterface)
    
            expect:
            noViolation(rule)
        }
    
        def "adding an #type interface to super class would not be reported"() {
            given:
            newSuper.addInterface(interfaces[type])
    
            expect:
            noViolation(rule)
    
            where:
            type << ['internal', 'incubating']
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 4K bytes
    - Viewed (0)
Back to top