unit test and ui testing with cucumber

38
UINT TEST AND UI TESTING WITH CUCUMBER andyang@Android Taipei

Upload: -

Post on 21-Apr-2017

839 views

Category:

Engineering


3 download

TRANSCRIPT

Page 1: Unit test and ui testing with cucumber

UINT TEST AND UI TESTING WITH CUCUMBER

andyang@Android Taipei

Page 2: Unit test and ui testing with cucumber

ABOUT ME

Page 3: Unit test and ui testing with cucumber

OUTLINE

Page 4: Unit test and ui testing with cucumber

OUTLINE

Page 5: Unit test and ui testing with cucumber

SAMPLE CODE

GITHUB LINK

▸ Live Demo

▸ https://github.com/bng86/UnitTestDemo

Page 7: Unit test and ui testing with cucumber

OVERVIEW

Unit Test

Integration Test

UI Test

androidTest

unit test

10%

20%

70%

Page 8: Unit test and ui testing with cucumber

UNIT TEST

FIRST

▸ Fast

▸ Independent

▸ Repeatable

▸ Self Validating

▸ Timely

Page 9: Unit test and ui testing with cucumber

UNIT TEST

Page 10: Unit test and ui testing with cucumber

UNIT TEST

Page 11: Unit test and ui testing with cucumber

UNIT TEST

Page 12: Unit test and ui testing with cucumber

UNIT TEST

Page 13: Unit test and ui testing with cucumber

UNIT TEST

TIPS

▸ ( Assertion)

Page 14: Unit test and ui testing with cucumber

UINT TEST

TIPS 3A

▸ Arrange

▸ Act

▸ Assert

Page 15: Unit test and ui testing with cucumber

3A PRACTICE

Page 16: Unit test and ui testing with cucumber

UNIT TEST

JUNIT 4

▸ @Test

▸ @Setup

▸ @Before

▸ @After

▸ @BeforeClass

▸ @AfterClass

Page 17: Unit test and ui testing with cucumber

UNIT TEST

JUNIT 4

BeforeClass

AfterClass

Before

After

Test A

Test B

1

2

3

4

5

6

7

8

Page 18: Unit test and ui testing with cucumber

UNIT TEST

ANDROID STUDIO SET UP JUNIT 4

Page 19: Unit test and ui testing with cucumber

Unit Test Live Demo

Page 20: Unit test and ui testing with cucumber

UI TESTING

▸ UI Testing -> Do the right thing

▸ Unit Testing -> Do the thing Right

▸ UI Testing

Page 21: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

▸ a business readable, domain specific language

▸ used for documentation and automated testing

Page 22: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

Page 23: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

▸ Feature -

▸ Scenario -

▸ Given - arrange

▸ When - act

▸ Then - assert

Page 24: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

▸ And

Page 25: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

▸ Background

Page 26: Unit test and ui testing with cucumber

CUCUMBER

CHERKIN

▸ Scenario Outline

Page 27: Unit test and ui testing with cucumber

UI TESTING

ANDROID STUDIO CUCUMBER PLUGIN

▸ preferences -> plugins -> search Cucumber for Java

Page 28: Unit test and ui testing with cucumber

UI TESTING

ANDROID STUDIO CUCUMBER PLUGIN

▸ auto formater

▸ step test method

Page 29: Unit test and ui testing with cucumber

UI TESTING

ANDROID STUDIO SET UP ESPRESSO WITH CUCUMBER

Page 30: Unit test and ui testing with cucumber

UI Test With Cucumber Live Demo

Page 31: Unit test and ui testing with cucumber

RefactoringLive Demo

Page 32: Unit test and ui testing with cucumber

RECAP

▸ FIRST

▸ 3A

▸ JUNIT4

▸ Cucumber

Page 33: Unit test and ui testing with cucumber

TDDLive Demo

Page 34: Unit test and ui testing with cucumber

▸ TDD ( C#)

▸ Joey Chen 91

▸ 70 45

▸ 91

Page 35: Unit test and ui testing with cucumber

▸ 19:00 ~ 22:00

▸ @

▸ 7/30( ) Workshop: Firebase app

Page 36: Unit test and ui testing with cucumber

▸ 30 TDD

▸ https://cucumber.io/docs/reference

▸ https://github.com/cucumber/cucumber-jvm/tree/master/android

▸ https://google.github.io/android-testing-support-library/docs/espresso/

Page 37: Unit test and ui testing with cucumber

Q&A

Page 38: Unit test and ui testing with cucumber

THANKS