diff --git a/testing/src/main/java/org/oppia/android/testing/platformparameter/TestBooleanPlatformParameter.kt b/testing/src/main/java/org/oppia/android/testing/platformparameter/TestBooleanPlatformParameter.kt index de74d381739..2130e26e834 100644 --- a/testing/src/main/java/org/oppia/android/testing/platformparameter/TestBooleanPlatformParameter.kt +++ b/testing/src/main/java/org/oppia/android/testing/platformparameter/TestBooleanPlatformParameter.kt @@ -22,3 +22,22 @@ const val TEST_BOOLEAN_PARAM_DEFAULT_VALUE = false * Server value for the test boolean platform parameter. Only used in tests related to platform parameter. */ const val TEST_BOOLEAN_PARAM_SERVER_VALUE = true + +/** + * Feature flag sync status name for the test string platform parameter. This name helps retrieve + * the sync status of the [TestStringParam]. Only used in tests related to platform parameter. + */ +const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED = + "flag_test_string_param_name_is_server_provided" + +/** + * Default value for the feature flag sync status tracker for the [TestStringParam]. Only used in + * tests related to platform parameter. + */ +const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED_DEFAULT_VALUE = false + +/** + * Server value for the test string platform parameter. Only used in tests related to platform + * parameter. + */ +const val TEST_STRING_PARAM_SYNC_STATUS_FLAG_SERVER_VALUE = true diff --git a/testing/src/main/java/org/oppia/android/testing/platformparameter/TestStringPlatformParameter.kt b/testing/src/main/java/org/oppia/android/testing/platformparameter/TestStringPlatformParameter.kt index e50a9a52a01..6c5e01c0d95 100644 --- a/testing/src/main/java/org/oppia/android/testing/platformparameter/TestStringPlatformParameter.kt +++ b/testing/src/main/java/org/oppia/android/testing/platformparameter/TestStringPlatformParameter.kt @@ -24,22 +24,3 @@ const val TEST_STRING_PARAM_DEFAULT_VALUE = "test_string_param_default_value" * parameter. */ const val TEST_STRING_PARAM_SERVER_VALUE = "test_string_param_value" - -/** - * Feature flag sync status name for the test string platform parameter. This name helps retrieve - * the sync status of the [TestStringParam]. Only used in tests related to platform parameter. - */ -const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED = - "flag_test_string_param_name_is_server_provided" - -/** - * Default value for the feature flag sync status tracker for the [TestStringParam]. Only used in - * tests related to platform parameter. - */ -const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED_DEFAULT_VALUE = false - -/** - * Server value for the test string platform parameter. Only used in tests related to platform - * parameter. - */ -const val TEST_STRING_PARAM_SYNC_STATUS_FLAG_SERVER_VALUE = true