Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@ CourseATF
=========

course of android testing framework

# Contributors
* team-name: name, ...
* can: can-sz
* pine-team: pine-jh

2 changes: 0 additions & 2 deletions TemperatureConverter/res/layout/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

<com.example.i2at.tc.EditNumber
android:id="@+id/celsius"
android:text="@+id/EditText01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="celsius"
Expand All @@ -33,7 +32,6 @@

<com.example.i2at.tc.EditNumber
android:id="@+id/fahrenheit"
android:text="@+id/EditText02"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="fahrenheit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public void testFieldsShouldStartEmpty() {
/* TODO #1. 최소 실행 시 각 field 는 비워져 있어야 함
* field : mCelsius, mFahrenheit
*/
assertTrue("".equals(mCelsius.getText().toString()));
assertTrue("".equals(mFahrenheit.getText().toString()));
}

@SmallTest
Expand Down