Android - Test code 작성시 추가해야할 header들
build.gradle ( Module: ***.app ) androidTestImplementation 'androidx.test.ext:junit:1.1.0' androidTestImplementation 'androidx.test:runner:1.1.2-alpha02' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha02' testImplementation 'androidx.arch.core:core-testing:2.1.0' Test Class 파일에 추가할 것들. import androidx.test.ext.junit.runners.AndroidJUnit4 import com.example.cupcake.mod..
2022.05.16