Home
last modified time | relevance | path

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

/packages/apps/TV/tests/unit/src/com/android/tv/common/
DTvContentRatingCacheTest.java25 import com.android.tv.testing.TvContentRatingConstants;
37 public static final String MA_AND_Y7 = TvContentRatingConstants.STRING_US_TV_MA + ","
38 + TvContentRatingConstants.STRING_US_TV_Y7_US_TV_FV;
43 public static final String Y7_AND_MA = TvContentRatingConstants.STRING_US_TV_Y7_US_TV_FV + ","
44 + TvContentRatingConstants.STRING_US_TV_MA;
60 TvContentRating[] result = mCache.getRatings(TvContentRatingConstants.STRING_US_TV_MA); in testGetRatings_US_TV_MA()
61 MoreAsserts.assertEquals(asArray(TvContentRatingConstants.CONTENT_RATING_US_TV_MA), result); in testGetRatings_US_TV_MA()
65 TvContentRating[] first = mCache.getRatings(TvContentRatingConstants.STRING_US_TV_MA); in testGetRatings_US_TV_MA_same()
66 TvContentRating[] second = mCache.getRatings(TvContentRatingConstants.STRING_US_TV_MA); in testGetRatings_US_TV_MA_same()
71 TvContentRating[] first = mCache.getRatings(TvContentRatingConstants.STRING_US_TV_MA); in testGetRatings_US_TV_MA_diffAfterClear()
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DTvContentRatingConstants.java24 public final class TvContentRatingConstants { class