Home | History | Annotate | Download | only in configuration
      1 /*
      2  * Copyright (C) 2007 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.android.ide.common.resources.configuration;
     18 
     19 import junit.framework.TestCase;
     20 
     21 public class ScreenDimensionQualifierTest extends TestCase {
     22 
     23     private ScreenDimensionQualifier sdq;
     24     private FolderConfiguration config;
     25 
     26     @Override
     27     protected void setUp() throws Exception {
     28         super.setUp();
     29         sdq = new ScreenDimensionQualifier();
     30         config = new FolderConfiguration();
     31     }
     32 
     33     @Override
     34     protected void tearDown() throws Exception {
     35         super.tearDown();
     36         sdq = null;
     37         config = null;
     38     }
     39 
     40     public void testCheckAndSet() {
     41         assertEquals(true, sdq.checkAndSet("400x200", config));//$NON-NLS-1$
     42         assertTrue(config.getScreenDimensionQualifier() != null);
     43         assertEquals(400, config.getScreenDimensionQualifier().getValue1());
     44         assertEquals(200, config.getScreenDimensionQualifier().getValue2());
     45         assertEquals("400x200", config.getScreenDimensionQualifier().toString()); //$NON-NLS-1$
     46     }
     47 
     48     public void testFailures() {
     49         assertEquals(false, sdq.checkAndSet("", config));//$NON-NLS-1$
     50         assertEquals(false, sdq.checkAndSet("400X200", config));//$NON-NLS-1$
     51         assertEquals(false, sdq.checkAndSet("x200", config));//$NON-NLS-1$
     52         assertEquals(false, sdq.checkAndSet("ax200", config));//$NON-NLS-1$
     53         assertEquals(false, sdq.checkAndSet("400x", config));//$NON-NLS-1$
     54         assertEquals(false, sdq.checkAndSet("400xa", config));//$NON-NLS-1$
     55         assertEquals(false, sdq.checkAndSet("other", config));//$NON-NLS-1$
     56     }
     57 }
     58