Tags
30 days Agile Agile2008 Android Bas Vodde blog C/C++ CC chrome clone detector Cocoa code clone Code Coverage Coding Dojo Crowdsourcing Eclipse Embedded Erlang Fit FitNesse Game of Life Go James Grenning Jame Shore Java JUnit LISP Michael Feathers Planning poker Quote Scrum SLIM Small Steps Smalltalk Static Analysis SurfaceView survey TDD Testing Unit Test Wiki xUnit 번역 인사이트 책-
Recent Posts
Category Archives: TDD
Activity 두 개 왔다 갔다 테스트
예제코드: https://github.com/jooyunghan/Android-testing 위의 주소에서 clock / clocktest 예제 프로젝트를 받을 수 있으며, 여기에는 몇가지 형태의 테스트 예제가 포함되어 있다. 1. base class 를 ActivityUnitTestCase 로 한 것 ActivityUnitTestCase는 Activity를 독립적으로 테스트하기 위한 base class이다. 외부 컴포넌트로의 접근이 제한되며, 자기 자신의 … Continue reading
Java Project 참조하는 Android Project 에서 Ant 사용
의외로 한글로 된 문서에는 이것을 다룬 글이 없는 것 같다. (적어도 google.co.kr에서 jar.libs.dir 을 검색했을 때 안드로이드 관련 글이 첫페이지에 안나온다.) Java Project와 Android Test Project의 의존성에서는 Android Project와 Android Test Project에서 Java Project에 대한 참조가 발생하는 경우의 Eclipse 설정을 … Continue reading
Java Project와 Android Test Project의 의존성
Android project에서 순수 Java로 가능한 부분들을 Java project로 분리하였다면 일반적인 JUnit으로 테스트할 수 있다고 했다. 이 경우 가장 단순하게 봤을 때, 다음과 같은 프로젝트 간 의존성이 생긴다. Java project: GOL Android project: GOLAndroid -> GOL Android test project: GOLAndroidTest -> … Continue reading