Home
last modified time | relevance | path

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

/packages/apps/TV/common/src/com/android/tv/common/feature/
DTestableFeature.java36 private Boolean mTestValue = null; field in TestableFeature
54 mTestValue = initialValue; in TestableFeature()
62 mTestValue = true; in enableForTest()
74 mTestValue = false; in disableForTests()
83 mTestValue = null; in resetForTests()
89 if (CommonUtils.isRunningInTest() && mTestValue != null) { in isEnabled()
90 return mTestValue; in isEnabled()
99 if (mTestValue == null) { in toString()
102 msg = "Testable Feature is " + (mTestValue ? "on" : "off") + " was " + msg; in toString()