add android properties box tests

This commit is contained in:
Mikhail Mutcianko
2014-08-27 15:45:29 +04:00
committed by Yan Zhulanow
parent f2ab424c41
commit 08245ffe1c
17 changed files with 326 additions and 82 deletions
@@ -0,0 +1,8 @@
package android.app
import android.view.View
import android.content.Context
abstract class Activity: Context {
abstract fun findViewById(id: Int): View?
}