SlideShare a Scribd company logo
Android テスト環境 あれこれ
Mobile Act Online #3
sokume
自己紹介
@sokume
名古屋のHR系ベンチャー企業
モバイルアプリのエンジニア(主にAndroid)
GDG Nagoya オーガナイザー やってます。
今日の話
みなさん、テスト書いてますか?
今日の話
テストを書かないとと思っていますが…
今日の話
そもそも
Androidのテスト環境を構築するのが
むずかしい思ったりしています😕
今日の話
今日は、Androidのテスト環境構築で
覚えておくと良い事をまとめてみました。
対象は
Android初学者向けの内容です😀
Androidプロジェクト
プロジェクト構成図
androidTest と Test が自動的に作
成されるテスト用ディレクトリ。
Androidプロジェクト
プロジェクト構成図
androidTest
- Android API、Android デバイスに依存したテストが実施可能
- Android エミュレータや Android 実機が無いと実行できないテスト
- 実施するためにプロジェクト全体のビルドが必要となる
- Instrumentation Test
test
- Android API、は利用できないテスト環境
- JVM(Java Virtual Machine)を利用してテストの実施可能
- 実機が無くてもテストの実行が行える
- Local Test
Androidプロジェクトセットアップ
プロジェクト構成図
build.gradleのライブラリ定義
Android API の Test
じゃぁ、Local TestでAndroid APIが利用できないの?
Robolectric フレームワーク
ほぼ公式のテスト用フレームワーク
Robolectric フレームワーク
Robolectric フレームワークを使うことで
Local Test 環境でAndroid API が使えます👍
Local Test(Robolectric) 環境
Robolectric フレームワーク
ほぼ?
Robolectric フレームワーク
AndroidX パッケージで、
Local Test(Robolectric使用)と
Instrumentation Testの互換利用が可能に。
Robolectric フレームワークの互換性
Local Test(Robolectric使用)環境
Instrumentation Test 環境
@RunWith(RobolectricTestRunner::class)
class TestClass {
…
}
@RunWith(AndroidJUnit4::class)
class TestClass {
…
}
別々の定義
Robolectric フレームワークの互換性
Local Test(Robolectric使用)環境
Instrumentation Test 環境
@RunWith(AndroidJUnit4::class)
class TestClass {
…
}
一緒の定義になることで!
両方の環境でテストコードの共通化が簡単にできるように
なった。
ちょっと中身
テストクラスの作り方
テストクラスの作り方
テストクラスの作り方
これまでの内容をふまえて。 #Check1
検索する場合、自分がどの方法でテスト実装するかを意識しておこう。
Local Test
Local Test
(Robolectric)
Instrumentation
Test
どれ?
これまでの内容をふまえて。 #Check2
コードで使用しているライブラリを気にしてみよう。
// #1
androidTestImplementation 'androidx.test:runner:1.x.x'
は
androidTestImplementation 'androidx.test.ext:junit:1.x.x'
に置き換わっています。
// #2
testImplementation 'org.robolectric:robolectric:4.x'
から、AndroidX の対応が含まれていますので参考にするにはver 4.0以上のものをおすすめ。
まとめ
Androidのテスト環境を作るのってすごく疲れません?
・サンプルのコードを参考ためしてみたがビルドが通らない
  → サンプルと自分の作りたいテストの内容が一致しているか見直す
 ・APIが想定外の動作になる
  → Android API がテストで想定通りに使えないのはよくある😅
 ・そもそも、テストは実行出来るのか?
  → 実機やエミュレータが必要な環境であれば用意されている?
まとめ
いきなり実装方法を検索してごにょごにょする前に!
どんな環境があるの? どんな事ができる? どんなテストを作ろう?
START!
おしまい
ありがとうございました🙂
参考
Androidでアプリをテストする
 https://developer.android.com/training/testing?hl=ja
Robolectric ANDROIDX TEST
 http://robolectric.org/androidx_test/
Advanced Android in Kotlin 05.1:Testing Basics
 https://developer.android.com/codelabs/advanced-android-kotlin-training-testing-basics#0

More Related Content

PDF
Karumi Dojo: Kata Maxibon
PDF
Test Driven Development with Spring Boot - Testing the Harder Stuff
PDF
Testing on Android
PDF
Inside Android Testing
PDF
Android Made Simple
PPTX
Design Process for Robotics Competition
PDF
Which android app development tools deserve your attention this year
Karumi Dojo: Kata Maxibon
Test Driven Development with Spring Boot - Testing the Harder Stuff
Testing on Android
Inside Android Testing
Android Made Simple
Design Process for Robotics Competition
Which android app development tools deserve your attention this year

Similar to Android Test 環境あれこれ (20)

DOC
nikita_gandhe_resume
PPTX
Module-I_Introduction-to-Android.pptx
PDF
Industrial Trends for Mobile
PDF
2.Android App Development_ Types of Automated Unit Tests.pdf
PDF
Android Fingerprint Authentication
PDF
Android training in noida
PPT
Android automation tools
PPTX
What new in Android n and Tensor Flow - Updates from Google #IO16
DOCX
Vilas_Sangle
PPTX
Mobile Quality Challenges At Zalando
PPTX
Mobile Testing Challenges at Zalando Tech
PDF
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
PDF
Fight back android fragmentation
PPTX
Mobile UI Testing using Appium and Docker
PDF
Final Agile Forum
DOC
Resume keyur
PDF
Android Things - The IoT platform for everyone.
PDF
Android Jump Start
PPTX
Testing Android Application, Droidcon Torino
PDF
How to Inspect Elements on Android Devices.pdf
nikita_gandhe_resume
Module-I_Introduction-to-Android.pptx
Industrial Trends for Mobile
2.Android App Development_ Types of Automated Unit Tests.pdf
Android Fingerprint Authentication
Android training in noida
Android automation tools
What new in Android n and Tensor Flow - Updates from Google #IO16
Vilas_Sangle
Mobile Quality Challenges At Zalando
Mobile Testing Challenges at Zalando Tech
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
Fight back android fragmentation
Mobile UI Testing using Appium and Docker
Final Agile Forum
Resume keyur
Android Things - The IoT platform for everyone.
Android Jump Start
Testing Android Application, Droidcon Torino
How to Inspect Elements on Android Devices.pdf
Ad

Recently uploaded (20)

PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PDF
PPT on Performance Review to get promotions
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
Artificial Intelligence
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
additive manufacturing of ss316l using mig welding
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Construction Project Organization Group 2.pptx
PPT
Mechanical Engineering MATERIALS Selection
PPTX
Safety Seminar civil to be ensured for safe working.
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPT
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
web development for engineering and engineering
PPTX
Sustainable Sites - Green Building Construction
PDF
R24 SURVEYING LAB MANUAL for civil enggi
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPT on Performance Review to get promotions
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Artificial Intelligence
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Lecture Notes Electrical Wiring System Components
additive manufacturing of ss316l using mig welding
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Construction Project Organization Group 2.pptx
Mechanical Engineering MATERIALS Selection
Safety Seminar civil to be ensured for safe working.
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Foundation to blockchain - A guide to Blockchain Tech
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
web development for engineering and engineering
Sustainable Sites - Green Building Construction
R24 SURVEYING LAB MANUAL for civil enggi
Ad

Android Test 環境あれこれ