/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.widget.layout.table; import android.widget.layout.table.FixedWidth; import com.android.frameworks.coretests.R; import android.test.ActivityInstrumentationTestCase; import android.test.suitebuilder.annotation.MediumTest; import android.view.View; /** * {@link android.widget.layout.table.FixedWidth} is * setup to exercise tables in which cells use fixed width and height. */ public class FixedWidthTest extends ActivityInstrumentationTestCase { private View mFixedWidth; private View mFixedHeight; private View mNonFixedWidth; public FixedWidthTest() { super("com.android.frameworks.coretests", FixedWidth.class); } @Override protected void setUp() throws Exception { super.setUp(); final FixedWidth activity = getActivity(); mFixedWidth = activity.findViewById(R.id.fixed_width); mNonFixedWidth = activity.findViewById(R.id.non_fixed_width); mFixedHeight = activity.findViewById(R.id.fixed_height); } @MediumTest public void testSetUpConditions() throws Exception { assertNotNull(mFixedWidth); assertNotNull(mFixedHeight); assertNotNull(mNonFixedWidth); } // TODO: needs to be adjusted to pass on non-HVGA displays // @MediumTest public void testFixedWidth() throws Exception { assertEquals(150, mFixedWidth.getWidth()); assertEquals(mFixedWidth.getWidth(), mNonFixedWidth.getWidth()); } // TODO: needs to be adjusted to pass on non-HVGA displays // @MediumTest public void testFixedHeight() throws Exception { assertEquals(48, mFixedHeight.getHeight()); } }