Home | History | Annotate | Download | only in configuration
      1 /*
      2  * Copyright (C) 2008 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 NetworkCodeQualifierTest extends TestCase {
     22 
     23     private NetworkCodeQualifier mncq;
     24     private FolderConfiguration config;
     25 
     26     @Override
     27     protected void setUp() throws Exception {
     28         super.setUp();
     29         mncq = new NetworkCodeQualifier();
     30         config = new FolderConfiguration();
     31     }
     32 
     33     @Override
     34     protected void tearDown() throws Exception {
     35         super.tearDown();
     36         mncq = null;
     37         config = null;
     38     }
     39 
     40     public void testCheckAndSet() {
     41         assertEquals(true, mncq.checkAndSet("mnc123", config));//$NON-NLS-1$
     42         assertTrue(config.getNetworkCodeQualifier() != null);
     43         assertEquals(123, config.getNetworkCodeQualifier().getCode());
     44         assertEquals("mnc123", config.getNetworkCodeQualifier().toString()); //$NON-NLS-1$
     45     }
     46 
     47     public void testFailures() {
     48         assertEquals(false, mncq.checkAndSet("", config));//$NON-NLS-1$
     49         assertEquals(false, mncq.checkAndSet("mnc", config));//$NON-NLS-1$
     50         assertEquals(false, mncq.checkAndSet("MNC123", config));//$NON-NLS-1$
     51         assertEquals(false, mncq.checkAndSet("123", config));//$NON-NLS-1$
     52         assertEquals(false, mncq.checkAndSet("mncsdf", config));//$NON-NLS-1$
     53     }
     54 
     55 }
     56