Home | History | Annotate | Download | only in linear
      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 android.widget.layout.linear;
     18 
     19 import com.android.frameworks.coretests.R;
     20 import android.widget.layout.linear.BaselineAlignmentZeroWidthAndWeight;
     21 import android.widget.layout.linear.ExceptionTextView;
     22 
     23 import android.app.Activity;
     24 import android.test.ActivityInstrumentationTestCase;
     25 import android.test.suitebuilder.annotation.MediumTest;
     26 import android.view.KeyEvent;
     27 import android.widget.Button;
     28 
     29 public class BaselineAlignmentZeroWidthAndWeightTest extends ActivityInstrumentationTestCase<BaselineAlignmentZeroWidthAndWeight> {
     30     private Button mShowButton;
     31 
     32     public BaselineAlignmentZeroWidthAndWeightTest() {
     33         super("com.android.frameworks.coretests", BaselineAlignmentZeroWidthAndWeight.class);
     34     }
     35 
     36     @Override
     37     protected void setUp() throws Exception {
     38         super.setUp();
     39 
     40         final Activity activity = getActivity();
     41         mShowButton = (Button) activity.findViewById(R.id.show);
     42     }
     43 
     44     @MediumTest
     45     public void testSetUpConditions() throws Exception {
     46         assertNotNull(mShowButton);
     47     }
     48 
     49     @MediumTest
     50     public void testComputeTexViewWithoutIllegalArgumentException() throws Exception {
     51         assertTrue(mShowButton.hasFocus());
     52 
     53         // Pressing the button will show an ExceptionTextView that might set a failed bit if
     54         // the test fails.
     55         sendKeys(KeyEvent.KEYCODE_DPAD_CENTER);
     56         getInstrumentation().waitForIdleSync();
     57 
     58         final ExceptionTextView etv = (ExceptionTextView) getActivity()
     59                 .findViewById(R.id.routeToField);
     60         assertFalse("exception test view should not fail", etv.isFailed());
     61     }
     62 }
     63