Nico Küchler

Results 13 issues of Nico Küchler

There is no useful clue when one line ends with an additional whitespace. The test `expectThat("\ntest \n").isEqualTo("\ntest\n")` results in: ``` org.opentest4j.AssertionFailedError: ▼ Expect that " |test |": ✗ is equal...

🦄 enhancement

With Android Studio 1.4 the component tests (appCt) can't resolve the app classes anymore. Follow https://code.google.com/p/android/issues/detail?id=188880 for updates to this issue.

Tracked at: https://code.google.com/p/android/issues/detail?id=160024 This error can be removed by running an unit test from the main module first.

bug
branch library
workaround exist
google

Looks like same issue https://github.com/nenick/AndroidStudioAndRobolectric/issues/12 This error can be removed by running an unit test from the main module first.

bug
branch library
workaround exist
google

This works not out of the box but workaround can be found at https://code.google.com/p/android/issues/detail?id=144664

bug
workaround exist
optional feature
google

This issue is tracked at https://code.google.com/p/android/issues/detail?id=52962 Solution is to make the main project depend on different build types ... ... setting this in the dependency project ``` android { publishNonDefault...

bug
branch library
google
workaround applied

The issue with missing `src/test/resources` is tracked at https://code.google.com/p/android/issues/detail?id=136013 There is a known workaround https://code.google.com/p/android/issues/detail?id=136013#c10 Another approach can be found at https://github.com/evant/android-studio-unit-test-plugin/issues/4

bug
branch master
branch library
branch flavors
workaround exist
google

When I use `{@literal @}` to including @ symbols in code blocks then the line starts with one space to much. Sample snippet in **`package-info.java`**: `````` /** * ```java *...

hey guys, i learned much from your project and i like to give you something back. I finished an example with gradle, robolectric and jacoco. my project should not differences...

This line should be improved `commandLine "${BUILD_TOOL_DX}", "--dex", "--output=${ASSET_DIR}", secondaryFile.get(0).toString(), secondaryFile.get(1).toString()` if you add more files to secondary dex file, then this line need extra `secondaryFile.get(XX).toString()`. Maybe the command call...