android studio 中的测试支持库未编译

Test support library in android studio is not compiled

我的 SDK 中安装了最新的支持库。 gradle 文件

        defaultConfig {
            applicationId "com.example.win.dat_2"
            minSdkVersion 19
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }


        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    dependencies { 
        compile fileTree(dir: 'libs', include: ['*.jar']) 
        compile 'com.android.support:appcompat-v7:23.1.1'
        androidTestCompile('com.android.support.test.espresso:espres‌​so-core:2.2.2', { 
exclude group: 'com.android.support', module: 'support-annotations' }) 
    }

在应用程序中 gradle 将此添加到 defaultConfig

multiDexEnabled = true