aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/AbstractMultisetSetCountTester.java
blob: 02a21ca540152f176076f3807aa0d799a6dc431b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.puppycrawl.tools.checkstyle.checks.naming;

public abstract class AbstractMultisetSetCountTester<E> {

  private static final String SUPPORTS_REMOVE = "";

@CollectionFeature.Require(absent = SUPPORTS_REMOVE)
  public void testSetCount_negative_removeUnsupported() {
  }
}

@interface CollectionFeature {

    public @interface Require
    {
        String absent();
    }
}