-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Write first code generation test * Expand suite of Activity code generation tests * Expand suite to include fragments
- Loading branch information
1 parent
f57d9bb
commit d285e1d
Showing
9 changed files
with
659 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
application/src/androidTest/java/com/juullabs/exercise/ExampleInstrumentedTest.kt
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
application/src/test/java/com/juullabs/exercise/AssertJExtensions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.juullabs.exercise | ||
|
||
import org.assertj.core.api.AbstractStringAssert | ||
import org.intellij.lang.annotations.Language | ||
|
||
/** Wrapper around [AbstractStringAssert.isEqualTo] for Kotlin code literals to syntax highlight in Android Studio. */ | ||
fun AbstractStringAssert<*>.isEqualToKotlin( | ||
@Language("kotlin") source: String | ||
): AbstractStringAssert<*> = this.isEqualTo(source.trimIndent()) |
17 changes: 0 additions & 17 deletions
17
application/src/test/java/com/juullabs/exercise/ExampleUnitTest.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.