Skip to content

Commit 74d14e1

Browse files
author
yennj12
committed
add
1 parent 7ee5f39 commit 74d14e1

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

mobly/get-started-with-modly/exp1/hello_world_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ def setup_class(self):
88
# Registering android_device controller module declares the test's
99
# dependency on Android device hardware. By default, we expect at least one
1010
# object is created from this.
11+
1112
self.ads = self.register_controller(android_device)
1213
self.dut = self.ads[0]
1314
self.dut.load_sl4a() # starts sl4a.

mobly/hello_world_test.py

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
class HelloWorldTest(base_test.BaseTestClass):
66
def setup_class(self):
7+
8+
9+
print(">>> HelloWorldTest start")
10+
711
# Registering android_device controller module declares the test's
812
# dependency on Android device hardware. By default, we expect at least one
913
# object is created from this.

mobly/instrumentation_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
class InstrumentationTest(base_instrumentation_test.BaseInstrumentationTestClass):
88
def setup_class(self):
9+
10+
print(">>> InstrumentationTest start")
911
self.dut = self.register_controller(android_device)[0]
1012

1113
def test_instrumentation(self):

0 commit comments

Comments
 (0)