Home
last modified time | relevance | path

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

/external/robolectric-shadows/resources/src/test/java/org/robolectric/res/
DQualifiersTest.java45 @Test public void addSmallestScreenWidth() throws Exception { in addSmallestScreenWidth() method in QualifiersTest
46 assertThat(Qualifiers.addSmallestScreenWidth("", 320)).isEqualTo("sw320dp"); in addSmallestScreenWidth()
47 assertThat(Qualifiers.addSmallestScreenWidth("sw160dp", 320)).isEqualTo("sw160dp"); in addSmallestScreenWidth()
48 assertThat(Qualifiers.addSmallestScreenWidth("sw480dp", 320)).isEqualTo("sw480dp"); in addSmallestScreenWidth()
49 …assertThat(Qualifiers.addSmallestScreenWidth("en-v23", 320)).isEqualTo("en-v23-sw320dp"); // todo:… in addSmallestScreenWidth()
50 … assertThat(Qualifiers.addSmallestScreenWidth("en-sw160dp-v23", 320)).isEqualTo("en-sw160dp-v23"); in addSmallestScreenWidth()
51 … assertThat(Qualifiers.addSmallestScreenWidth("en-sw480dp-v23", 320)).isEqualTo("en-sw480dp-v23"); in addSmallestScreenWidth()
73 assertThat(Qualifiers.addSmallestScreenWidth("v7", 320)).isEqualTo("v7-sw320dp"); in getAddSmallestScreenWidth()
74 assertThat(Qualifiers.addSmallestScreenWidth("sw320dp-v7", 480)).isEqualTo("sw320dp-v7"); in getAddSmallestScreenWidth()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DQualifiers.java117 public static String addSmallestScreenWidth(String qualifiers, int smallestScreenWidth) { in addSmallestScreenWidth() method in Qualifiers