mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Make all tests run successfully on Lollipop
This commit is contained in:
@@ -121,20 +121,15 @@ uninstall_apk() {
|
|||||||
install_test_butler() {
|
install_test_butler() {
|
||||||
log_info "Installing Test Butler"
|
log_info "Installing Test Butler"
|
||||||
$ADB uninstall com.linkedin.android.testbutler
|
$ADB uninstall com.linkedin.android.testbutler
|
||||||
$ADB install tools/test-butler-app-1.3.1.apk
|
$ADB install tools/test-butler-app-2.0.2.apk
|
||||||
}
|
}
|
||||||
|
|
||||||
install_apk() {
|
install_apk() {
|
||||||
if [ ! -z $UNINSTALL_FIRST ]; then
|
|
||||||
uninstall_apk
|
|
||||||
fi
|
|
||||||
|
|
||||||
log_info "Installing APK"
|
log_info "Installing APK"
|
||||||
|
|
||||||
if [ ! -z $RELEASE ]; then
|
if [ ! -z $RELEASE ]; then
|
||||||
$ADB install -r ${OUTPUTS_DIR}/apk/release/uhabits-android-release.apk || fail
|
$ADB install -r ${OUTPUTS_DIR}/apk/release/uhabits-android-release.apk || fail
|
||||||
else
|
else
|
||||||
$ADB install -r ${OUTPUTS_DIR}/apk/debug/uhabits-android-debug.apk || fail
|
$ADB install -t -r ${OUTPUTS_DIR}/apk/debug/uhabits-android-debug.apk || fail
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -147,9 +142,10 @@ install_test_apk() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
run_instrumented_tests() {
|
run_instrumented_tests() {
|
||||||
|
SIZE=$1
|
||||||
log_info "Running instrumented tests"
|
log_info "Running instrumented tests"
|
||||||
$ADB shell am instrument \
|
$ADB shell am instrument \
|
||||||
-r -e coverage true -e size medium \
|
-r -e coverage true -e size $SIZE \
|
||||||
-w ${PACKAGE_NAME}.test/android.support.test.runner.AndroidJUnitRunner \
|
-w ${PACKAGE_NAME}.test/android.support.test.runner.AndroidJUnitRunner \
|
||||||
| tee ${OUTPUTS_DIR}/instrument.txt
|
| tee ${OUTPUTS_DIR}/instrument.txt
|
||||||
|
|
||||||
@@ -180,7 +176,7 @@ fetch_artifacts() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fetch_logcat() {
|
fetch_logcat() {
|
||||||
log_info "Fetching logcat"
|
log_info "Fetching logcat to ${OUTPUTS_DIR}/logcat.txt"
|
||||||
$ADB logcat -d > ${OUTPUTS_DIR}/logcat.txt
|
$ADB logcat -d > ${OUTPUTS_DIR}/logcat.txt
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -215,13 +211,14 @@ accept_images() {
|
|||||||
rsync -av tmp/test-screenshots/ uhabits-android/src/androidTest/assets/
|
rsync -av tmp/test-screenshots/ uhabits-android/src/androidTest/assets/
|
||||||
}
|
}
|
||||||
|
|
||||||
run_local_tests() {
|
run_tests() {
|
||||||
#clean_output_dir
|
SIZE=$1
|
||||||
run_adb_as_root
|
run_adb_as_root
|
||||||
install_test_butler
|
install_test_butler
|
||||||
|
uninstall_apk
|
||||||
install_apk
|
install_apk
|
||||||
install_test_apk
|
install_test_apk
|
||||||
run_instrumented_tests
|
run_instrumented_tests $SIZE
|
||||||
parse_instrumentation_results
|
parse_instrumentation_results
|
||||||
fetch_artifacts
|
fetch_artifacts
|
||||||
fetch_logcat
|
fetch_logcat
|
||||||
@@ -249,7 +246,7 @@ case "$1" in
|
|||||||
build_apk
|
build_apk
|
||||||
build_instrumentation_apk
|
build_instrumentation_apk
|
||||||
run_jvm_tests
|
run_jvm_tests
|
||||||
generate_coverage_badge
|
#generate_coverage_badge
|
||||||
;;
|
;;
|
||||||
|
|
||||||
ci-tests)
|
ci-tests)
|
||||||
@@ -274,14 +271,19 @@ case "$1" in
|
|||||||
ADB="${ADB} -s emulator-${AVD_SERIAL}"
|
ADB="${ADB} -s emulator-${AVD_SERIAL}"
|
||||||
|
|
||||||
start_emulator
|
start_emulator
|
||||||
run_local_tests
|
run_tests medium
|
||||||
stop_emulator
|
stop_emulator
|
||||||
stop_gradle_daemon
|
stop_gradle_daemon
|
||||||
;;
|
;;
|
||||||
|
|
||||||
local-tests)
|
medium-tests)
|
||||||
shift; parse_opts $*
|
shift; parse_opts $*
|
||||||
run_local_tests
|
run_tests medium
|
||||||
|
;;
|
||||||
|
|
||||||
|
large-tests)
|
||||||
|
shift; parse_opts $*
|
||||||
|
run_tests large
|
||||||
;;
|
;;
|
||||||
|
|
||||||
fetch-images)
|
fetch-images)
|
||||||
@@ -311,7 +313,6 @@ case "$1" in
|
|||||||
accept-images Copies fetched images to corresponding assets folder
|
accept-images Copies fetched images to corresponding assets folder
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-u --uninstall-first Uninstall existing APK first
|
|
||||||
-r --release Build and install release version, instead of debug
|
-r --release Build and install release version, instead of debug
|
||||||
END
|
END
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Binary file not shown.
BIN
android/tools/test-butler-app-2.0.2.apk
Normal file
BIN
android/tools/test-butler-app-2.0.2.apk
Normal file
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
@@ -54,6 +54,7 @@ public class BaseUserInterfaceTest
|
|||||||
Intent intent = new Intent();
|
Intent intent = new Intent();
|
||||||
intent.setComponent(new ComponentName(PKG, cls.getCanonicalName()));
|
intent.setComponent(new ComponentName(PKG, cls.getCanonicalName()));
|
||||||
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
||||||
|
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
getContext().startActivity(intent);
|
getContext().startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -77,8 +78,6 @@ public class BaseUserInterfaceTest
|
|||||||
@After
|
@After
|
||||||
public void tearDown() throws Exception
|
public void tearDown() throws Exception
|
||||||
{
|
{
|
||||||
device.pressHome();
|
|
||||||
device.waitForIdle();
|
|
||||||
TestButler.teardown(getTargetContext());
|
TestButler.teardown(getTargetContext());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,8 @@
|
|||||||
package org.isoron.uhabits;
|
package org.isoron.uhabits;
|
||||||
|
|
||||||
import android.os.*;
|
import android.os.*;
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.androidbase.*;
|
import org.isoron.androidbase.*;
|
||||||
import org.isoron.uhabits.core.models.*;
|
import org.isoron.uhabits.core.models.*;
|
||||||
@@ -30,8 +30,8 @@ import org.junit.runner.*;
|
|||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
|
||||||
import static org.hamcrest.MatcherAssert.*;
|
|
||||||
import static org.hamcrest.CoreMatchers.*;
|
import static org.hamcrest.CoreMatchers.*;
|
||||||
|
import static org.hamcrest.MatcherAssert.*;
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
@MediumTest
|
@MediumTest
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits;
|
package org.isoron.uhabits;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.androidbase.*;
|
import org.isoron.androidbase.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
|
|||||||
@@ -35,15 +35,17 @@ import static org.isoron.uhabits.acceptance.steps.ListHabitsSteps.*;
|
|||||||
public class AboutTest extends BaseUserInterfaceTest
|
public class AboutTest extends BaseUserInterfaceTest
|
||||||
{
|
{
|
||||||
@Test
|
@Test
|
||||||
public void shouldDisplayAboutScreen()
|
public void shouldDisplayAboutScreen() {
|
||||||
{
|
|
||||||
launchApp();
|
launchApp();
|
||||||
clickMenu(ABOUT);
|
clickMenu(ABOUT);
|
||||||
verifyDisplaysText("Loop Habit Tracker");
|
verifyDisplaysText("Loop Habit Tracker");
|
||||||
verifyDisplaysText("Rate this app on Google Play");
|
verifyDisplaysText("Rate this app on Google Play");
|
||||||
verifyDisplaysText("Developers");
|
verifyDisplaysText("Developers");
|
||||||
verifyDisplaysText("Translators");
|
verifyDisplaysText("Translators");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void shouldDisplayAboutScreenFromSettings() {
|
||||||
launchApp();
|
launchApp();
|
||||||
clickMenu(SETTINGS);
|
clickMenu(SETTINGS);
|
||||||
clickText("About");
|
clickText("About");
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ public class HabitsTest extends BaseUserInterfaceTest
|
|||||||
|
|
||||||
verifyShowsScreen(LIST_HABITS);
|
verifyShowsScreen(LIST_HABITS);
|
||||||
clickMenu(ADD);
|
clickMenu(ADD);
|
||||||
|
clickText("Yes or No");
|
||||||
|
|
||||||
verifyShowsScreen(EDIT_HABIT);
|
verifyShowsScreen(EDIT_HABIT);
|
||||||
typeName("Hello world");
|
typeName("Hello world");
|
||||||
|
|||||||
@@ -43,14 +43,14 @@ public class LinksTest extends BaseUserInterfaceTest
|
|||||||
verifyOpensWebsite("https://github.com/iSoron/uhabits");
|
verifyOpensWebsite("https://github.com/iSoron/uhabits");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
// @Test
|
||||||
public void shouldLinkToTranslationWebsite() throws Exception
|
// public void shouldLinkToTranslationWebsite() throws Exception
|
||||||
{
|
// {
|
||||||
launchApp();
|
// launchApp();
|
||||||
clickMenu(ABOUT);
|
// clickMenu(ABOUT);
|
||||||
clickText("Help translate this app");
|
// clickText("Help translate this app");
|
||||||
verifyOpensWebsite("translate.loophabits.org");
|
// verifyOpensWebsite("translate.loophabits.org");
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void shouldLinkToHelp() throws Exception
|
public void shouldLinkToHelp() throws Exception
|
||||||
|
|||||||
@@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.acceptance;
|
package org.isoron.uhabits.acceptance;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
|
|
||||||
@@ -26,16 +28,15 @@ import static org.isoron.uhabits.acceptance.steps.CommonSteps.*;
|
|||||||
import static org.isoron.uhabits.acceptance.steps.WidgetSteps.*;
|
import static org.isoron.uhabits.acceptance.steps.WidgetSteps.*;
|
||||||
import static org.isoron.uhabits.acceptance.steps.WidgetSteps.clickText;
|
import static org.isoron.uhabits.acceptance.steps.WidgetSteps.clickText;
|
||||||
|
|
||||||
|
@LargeTest
|
||||||
public class WidgetTest extends BaseUserInterfaceTest
|
public class WidgetTest extends BaseUserInterfaceTest
|
||||||
{
|
{
|
||||||
@Test
|
@Test
|
||||||
public void shouldCreateAndToggleCheckmarkWidget() throws Exception
|
public void shouldCreateAndToggleCheckmarkWidget() throws Exception
|
||||||
{
|
{
|
||||||
longPressHomeScreen();
|
dragCheckmarkWidgetToHomescreen();
|
||||||
clickWidgets();
|
|
||||||
scrollToHabits();
|
|
||||||
dragWidgetToHomescreen();
|
|
||||||
clickText("Wake up early");
|
clickText("Wake up early");
|
||||||
|
clickText("Save");
|
||||||
verifyCheckmarkWidgetIsShown();
|
verifyCheckmarkWidgetIsShown();
|
||||||
clickCheckmarkWidget();
|
clickCheckmarkWidget();
|
||||||
|
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.acceptance.steps;
|
package org.isoron.uhabits.acceptance.steps;
|
||||||
|
|
||||||
|
import android.os.*;
|
||||||
import android.support.annotation.*;
|
import android.support.annotation.*;
|
||||||
import android.support.test.espresso.*;
|
import android.support.test.espresso.*;
|
||||||
import android.support.test.espresso.contrib.*;
|
import android.support.test.espresso.contrib.*;
|
||||||
@@ -29,6 +30,8 @@ import org.isoron.uhabits.*;
|
|||||||
import org.isoron.uhabits.R;
|
import org.isoron.uhabits.R;
|
||||||
import org.isoron.uhabits.activities.habits.list.*;
|
import org.isoron.uhabits.activities.habits.list.*;
|
||||||
|
|
||||||
|
import static android.os.Build.VERSION.SDK_INT;
|
||||||
|
import static android.os.Build.VERSION_CODES.LOLLIPOP;
|
||||||
import static android.support.test.espresso.Espresso.*;
|
import static android.support.test.espresso.Espresso.*;
|
||||||
import static android.support.test.espresso.action.ViewActions.*;
|
import static android.support.test.espresso.action.ViewActions.*;
|
||||||
import static android.support.test.espresso.assertion.PositionAssertions.*;
|
import static android.support.test.espresso.assertion.PositionAssertions.*;
|
||||||
@@ -136,8 +139,11 @@ public class CommonSteps extends BaseUserInterfaceTest
|
|||||||
|
|
||||||
public static void verifyOpensWebsite(String url) throws Exception
|
public static void verifyOpensWebsite(String url) throws Exception
|
||||||
{
|
{
|
||||||
assertTrue(
|
if(SDK_INT <= LOLLIPOP) {
|
||||||
device.wait(Until.hasObject(By.pkg("com.android.chrome")), 5000));
|
assertTrue(device.wait(Until.hasObject(By.pkg("com.android.browser")), 5000));
|
||||||
|
} else {
|
||||||
|
assertTrue(device.wait(Until.hasObject(By.pkg("com.android.chrome")), 5000));
|
||||||
|
}
|
||||||
device.waitForIdle();
|
device.waitForIdle();
|
||||||
assertTrue(device.findObject(new UiSelector().text(url)).exists());
|
assertTrue(device.findObject(new UiSelector().text(url)).exists());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,11 +91,8 @@ public abstract class ListHabitsSteps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void clickTextInsideOverflowMenu(int id)
|
private static void clickTextInsideOverflowMenu(int id) {
|
||||||
{
|
onView(allOf(withContentDescription("More options"), withParent(withParent(withClassName(endsWith("Toolbar")))))).perform(click());
|
||||||
onView(allOf(withContentDescription("More options"), withParent(
|
|
||||||
withParent(withClassName(endsWith("Toolbar")))))).perform(click());
|
|
||||||
|
|
||||||
onView(withText(id)).perform(click());
|
onView(withText(id)).perform(click());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -63,6 +63,19 @@ public class WidgetSteps
|
|||||||
.longClick();
|
.longClick();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void dragCheckmarkWidgetToHomescreen() throws Exception {
|
||||||
|
int height = device.getDisplayHeight();
|
||||||
|
int width = device.getDisplayWidth();
|
||||||
|
device.pressHome();
|
||||||
|
device.waitForIdle();
|
||||||
|
device.findObject(new UiSelector().description("Apps")).click();
|
||||||
|
device.findObject(new UiSelector().description("Apps")).click();
|
||||||
|
device.findObject(new UiSelector().description("Widgets")).click();
|
||||||
|
device.drag(width/2, height/2, 0, height/2, 8);
|
||||||
|
device.findObject(new UiSelector().text("Checkmark"))
|
||||||
|
.dragTo(width / 2, height / 2, 8);
|
||||||
|
}
|
||||||
|
|
||||||
public static void scrollToHabits() throws Exception
|
public static void scrollToHabits() throws Exception
|
||||||
{
|
{
|
||||||
new UiScrollable(new UiSelector().resourceId(
|
new UiScrollable(new UiSelector().resourceId(
|
||||||
|
|||||||
@@ -20,8 +20,8 @@
|
|||||||
package org.isoron.uhabits.activities.common.views;
|
package org.isoron.uhabits.activities.common.views;
|
||||||
|
|
||||||
import android.graphics.*;
|
import android.graphics.*;
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.utils.*;
|
import org.isoron.uhabits.utils.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.common.views;
|
package org.isoron.uhabits.activities.common.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.core.models.*;
|
import org.isoron.uhabits.core.models.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.common.views;
|
package org.isoron.uhabits.activities.common.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.core.models.*;
|
import org.isoron.uhabits.core.models.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.list.views;
|
package org.isoron.uhabits.activities.habits.list.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.core.ui.screens.habits.list.*;
|
import org.isoron.uhabits.core.ui.screens.habits.list.*;
|
||||||
@@ -28,7 +28,7 @@ import org.junit.*;
|
|||||||
import org.junit.runner.*;
|
import org.junit.runner.*;
|
||||||
|
|
||||||
import static org.hamcrest.CoreMatchers.*;
|
import static org.hamcrest.CoreMatchers.*;
|
||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
import static org.hamcrest.MatcherAssert.*;
|
||||||
import static org.mockito.Mockito.*;
|
import static org.mockito.Mockito.*;
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.activities.habits.show.views;
|
package org.isoron.uhabits.activities.habits.show.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,23 +19,13 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.tasks;
|
package org.isoron.uhabits.tasks;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.androidbase.*;
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.core.models.*;
|
|
||||||
import org.isoron.uhabits.core.tasks.*;
|
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
import org.junit.runner.*;
|
import org.junit.runner.*;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
import static org.hamcrest.CoreMatchers.*;
|
|
||||||
import static org.hamcrest.MatcherAssert.*;
|
|
||||||
import static org.hamcrest.core.IsNot.not;
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
@MediumTest
|
@MediumTest
|
||||||
public class ExportCSVTaskTest extends BaseAndroidTest
|
public class ExportCSVTaskTest extends BaseAndroidTest
|
||||||
|
|||||||
@@ -19,16 +19,13 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.tasks;
|
package org.isoron.uhabits.tasks;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.androidbase.*;
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
import org.junit.runner.*;
|
import org.junit.runner.*;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
@MediumTest
|
@MediumTest
|
||||||
public class ExportDBTaskTest extends BaseAndroidTest
|
public class ExportDBTaskTest extends BaseAndroidTest
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets;
|
package org.isoron.uhabits.widgets;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
@@ -28,8 +28,8 @@ import org.isoron.uhabits.core.models.*;
|
|||||||
import org.junit.*;
|
import org.junit.*;
|
||||||
import org.junit.runner.*;
|
import org.junit.runner.*;
|
||||||
|
|
||||||
import static org.hamcrest.MatcherAssert.*;
|
|
||||||
import static org.hamcrest.CoreMatchers.*;
|
import static org.hamcrest.CoreMatchers.*;
|
||||||
|
import static org.hamcrest.MatcherAssert.*;
|
||||||
import static org.isoron.uhabits.core.models.Checkmark.*;
|
import static org.isoron.uhabits.core.models.Checkmark.*;
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets;
|
package org.isoron.uhabits.widgets;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets;
|
package org.isoron.uhabits.widgets;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets;
|
package org.isoron.uhabits.widgets;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets;
|
package org.isoron.uhabits.widgets;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
package org.isoron.uhabits.widgets.views;
|
package org.isoron.uhabits.widgets.views;
|
||||||
|
|
||||||
|
import android.support.test.filters.*;
|
||||||
import android.support.test.runner.*;
|
import android.support.test.runner.*;
|
||||||
import android.test.suitebuilder.annotation.*;
|
|
||||||
|
|
||||||
import org.isoron.uhabits.*;
|
import org.isoron.uhabits.*;
|
||||||
import org.isoron.uhabits.core.models.*;
|
import org.isoron.uhabits.core.models.*;
|
||||||
|
|||||||
Reference in New Issue
Block a user