Searched refs:OPTION_NAME (Results 1 – 9 of 9) sorted by relevance
33 private static final String OPTION_NAME = "option"; field in TestOptionTest72 TestableOption option = new TestableOption(OPTION_NAME); in testSuppliedValue_valid()90 TestableOption option = new TestableOption(OPTION_NAME); in testSuppliedValue_invalid()108 TestableOption option = new TestableOption(OPTION_NAME).setRequired(true); in testRequiredValueAbsent_explicit()125 TestableOption option = new TestableOption(OPTION_NAME); in testRequiredValueAbsent_implicit()141 new TestableOption(OPTION_NAME).setRequired(true).setDefault(VALUE_VALID); in testRequiredValueAbsent_withDefault()156 TestableOption option = new TestableOption(OPTION_NAME).setRequired(false); in testNonRequiredValueAbsent()171 TestableOption option = new TestableOption(OPTION_NAME); in testOptionErrorSkipsTest_invalidValue()195 TestableOption option = new TestableOption(OPTION_NAME).setRequired(true); in testOptionErrorSkipsTest_requiredMissing()226 TestableOption option = new TestableOption(OPTION_NAME).setRequired(true); in testUninitializedOptionThrows()
27 private static final String OPTION_NAME = "option"; field in BooleanOptionTest51 TestableBooleanOption option = new TestableBooleanOption(OPTION_NAME); in testParsing_true()67 TestableBooleanOption option = new TestableBooleanOption(OPTION_NAME); in testParsing_false()
31 private static final String OPTION_NAME = "option"; field in LongOptionTest55 TestableLongOption option = new TestableLongOption(OPTION_NAME); in testParsing_valid()75 TestableLongOption option = new TestableLongOption(OPTION_NAME); in testParsing_invalid()
31 private static final String OPTION_NAME = "option"; field in IntegerOptionTest55 TestableIntegerOption option = new TestableIntegerOption(OPTION_NAME); in testParsing_valid()75 TestableIntegerOption option = new TestableIntegerOption(OPTION_NAME); in testParsing_invalid()
31 private static final String OPTION_NAME = "option"; field in DoubleOptionTest55 TestableDoubleOption option = new TestableDoubleOption(OPTION_NAME); in testParsing_valid()75 TestableDoubleOption option = new TestableDoubleOption(OPTION_NAME); in testParsing_invalid()
27 private static final String OPTION_NAME = "option"; field in StringOptionTest51 TestableStringOption option = new TestableStringOption(OPTION_NAME); in testRetrieval()
29 @VisibleForTesting static final String OPTION_NAME = "filter-tests"; field in TestFilter34 String testFilters = arguments.getString(OPTION_NAME); in isFilteredOrUnspecified()
76 args.putString(TestFilter.OPTION_NAME, testFilterArg); in buildArguments()
138 val testFilters = arguments.getString(OPTION_NAME) ?: return emptyMap() in getFiltersFromArguments()202 private const val OPTION_NAME = "filter-tests" constant