/** * Copyright (c) 2012 Todoroo Inc * * See the file "LICENSE" for the full license governing this code. */ package com.todoroo.andlib.test; import junit.framework.Assert; import android.test.AndroidTestCase; public class SimpleAndroidTest extends AndroidTestCase { public void testSimpleAssert() throws Throwable { Assert.assertTrue(true); } }