practicalunittesting-exercises
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Source code of the exercises from "Practical Unit Testing with TestNG and Mockito"
== Basic Info
This project contains all the source code of exercises for "Practical Unit Testing with TestNG and Mockito".

See the book's website: http://practicalunittesting.com

== Import project to your IDE

=== Eclipse
First you need to generate Eclipse project files. If you have Gradle installed then type

----
gradle eclipse
----

In other cases (this will take some time - first Gradle will be downloaded):

----
./gradlew eclipse
----

After this you can import this project to Eclipse as any other project (File / Import / General / Existing Project into Workspace). As far as I know (not being an Eclipse guru!) you need to import each project individually.

=== IntelliJ IDEA
You can import files by choosing:

* File / New Project / Import project from external module
* select Gradle
* and then select +build.gradle+ file

== Content
For your convenience all exercises are kept in separate dirs with names like "chp_X_exercise_name" where X is the chapter number:

* Chapter 3 "Unit Tests with no Collaborators"
* Chapter 4 "Test Driven Development"
* Chapter 5 "Mocks, Stubs, Test Spies"
* Chapter 6 "Things You Should Know"
* Chapter 7 "Points of Controversy"
* Chapter 8 "Getting Feedback"
* Chapter 9 "Organization of Tests"
* Chapter 10 "Maintainable Tests"
* Chapter 11 "Test Quality"

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。