@@ -135,13 +135,13 @@ FAQ
135
135
Also, the people behind Spring rock. I felt like I was selling tickets to the concert of rockstars by releasing
136
136
this.
137
137
138
- 3. What is the main design decision behind this framework?
138
+ 3. What is the main design principle behind this framework?
139
139
140
140
> Make you do as little as possible.
141
141
142
142
4. When should I use this?
143
143
144
- > You should only use this to write you *unit* tests. For anything else, you would want the whole application to
144
+ > You should only use this to write your *unit* tests. For anything else, you would want the whole application to
145
145
come alive and work. Using mocks for that is a bad idea.
146
146
147
147
5. This is going to be used at the level of code testing. Is it really well written?
@@ -154,7 +154,7 @@ Some Numbers and Facts
154
154
155
155
* This project has *1000+* individual unit tests.
156
156
157
- * This project has **100%** [code coverage](https:// coveralls.io/github/mmnaseri/spring-data-mock)
157
+ * This project has effective **100%** (deprecated code is not tested) [code coverage](https:// coveralls.io/github/mmnaseri/spring-data-mock)
158
158
159
159
* This project has **95%** branch coverage rate.
160
160
@@ -171,8 +171,8 @@ Some Numbers and Facts
171
171
Contribution
172
172
------------
173
173
174
- Since this project is aimed at the testing phase of your code, it is paramount that it is written with the best of
175
- qualities and that it maintains the highest standard.
174
+ Since this project aims to help you in the testing phase of your code, it is paramount that it is
175
+ written with the best of qualities and that it maintains the highest standard.
176
176
177
177
Contributors are more than welcome. In fact, I flag most of the issues I receive as `help wanted` and
178
178
there are really generous people out there who do take care of some issues.
@@ -181,6 +181,17 @@ If you see a piece of code that you don't like for whatever reason -- so long as
181
181
by pioneers and standards -- feel free to dig in and change the code to your heart's content and create a
182
182
pull request.
183
183
184
+ ### Building the Code
185
+
186
+ To make the code builds universal and canonical, I have a Docker configuration attached to this project
187
+ which installs OpenJDK 8 on Ubuntu Xenial. This is the build environment I will be using to test and release
188
+ the code.
189
+
190
+ ```bash
191
+ docker build -t spring-data-mock:jdk8 .
192
+ docker run -it --rm -v $(pwd):/src spring-data-mock:jdk8
193
+ ```
194
+
184
195
Donation
185
196
--------
186
197
0 commit comments