add android goto declaration test stub

This commit is contained in:
Mikhail Mutcianko
2014-09-09 16:55:34 +04:00
committed by Yan Zhulanow
parent 537933d145
commit 7c4661aba5
6 changed files with 129 additions and 1 deletions
@@ -4,7 +4,7 @@ import android.app.Activity
class MyActivity: Activity() {
val button = this.log<caret>
val button = this.login<caret>
}
// EXIST: login
@@ -0,0 +1,17 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/item_detail_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ItemDetailActivity"
tools:ignore="MergeRootFrame" >
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sign in" />
</FrameLayout>
@@ -0,0 +1,9 @@
package com.myapp
import android.app.Activity
class MyActivity: Activity() {
val button = this.login<caret>
}