Home
last modified time | relevance | path

Searched refs:OPTION_NAME (Results 1 – 9 of 9) sorted by relevance

/platform_testing/libraries/health/options/tests/src/android/platform/test/options/
DTestOptionTest.java33 private static final String OPTION_NAME = "option"; field in TestOptionTest
72 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()
DBooleanOptionTest.java27 private static final String OPTION_NAME = "option"; field in BooleanOptionTest
51 TestableBooleanOption option = new TestableBooleanOption(OPTION_NAME); in testParsing_true()
67 TestableBooleanOption option = new TestableBooleanOption(OPTION_NAME); in testParsing_false()
DLongOptionTest.java31 private static final String OPTION_NAME = "option"; field in LongOptionTest
55 TestableLongOption option = new TestableLongOption(OPTION_NAME); in testParsing_valid()
75 TestableLongOption option = new TestableLongOption(OPTION_NAME); in testParsing_invalid()
DIntegerOptionTest.java31 private static final String OPTION_NAME = "option"; field in IntegerOptionTest
55 TestableIntegerOption option = new TestableIntegerOption(OPTION_NAME); in testParsing_valid()
75 TestableIntegerOption option = new TestableIntegerOption(OPTION_NAME); in testParsing_invalid()
DDoubleOptionTest.java31 private static final String OPTION_NAME = "option"; field in DoubleOptionTest
55 TestableDoubleOption option = new TestableDoubleOption(OPTION_NAME); in testParsing_valid()
75 TestableDoubleOption option = new TestableDoubleOption(OPTION_NAME); in testParsing_invalid()
DStringOptionTest.java27 private static final String OPTION_NAME = "option"; field in StringOptionTest
51 TestableStringOption option = new TestableStringOption(OPTION_NAME); in testRetrieval()
/platform_testing/libraries/health/utils/src/android/platform/test/util/
DTestFilter.java29 @VisibleForTesting static final String OPTION_NAME = "filter-tests"; field in TestFilter
34 String testFilters = arguments.getString(OPTION_NAME); in isFilteredOrUnspecified()
/platform_testing/libraries/health/utils/tests/src/android/platform/test/util/
DTestFilterTest.java76 args.putString(TestFilter.OPTION_NAME, testFilterArg); in buildArguments()
/platform_testing/libraries/flicker/src/android/tools/flicker/junit/
DLegacyFlickerServiceDecorator.kt138 val testFilters = arguments.getString(OPTION_NAME) ?: return emptyMap() in getFiltersFromArguments()
202 private const val OPTION_NAME = "filter-tests" constant