Skip to content

Commit acbeef6

Browse files
committed
Wiki writing
1 parent e964ed9 commit acbeef6

4 files changed

+31
-0
lines changed

wiki/DevelopmentProcess.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Build
2+
3+
The build tool used is Maven,
4+
Please ensure that you have maven installed.
5+
The erlang-maven-plugin version used is 2.2.0
6+
7+
## Build goals
8+
Here are the main build goals used
9+
* mvn compile: To compile the source code
10+
* mvn test: To run the eunit tests
11+
* mvn site: To generate the maven site. The pom.xml file configures the site to contain the edoc, eunit and coverage reports.
12+
* mvn license:check: Ensure that all the source code files contains a license disclaimer.
13+
* mvn license:format: Add the license to every files

wiki/Home.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* [Development Process](DevelopmentProcess)
2+
* [Mutation Testing](MutationTesting)
3+

wiki/MutationTesting.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* [Presentation](Presentation)

wiki/MutationTestingPresentation.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
% Mutation Testing
2+
% Nicolas Charpentier
3+
% May, 2012
4+
5+
# Agile Software Development and tests
6+
7+
- Used to design
8+
- Used to validate software requirement
9+
- Used to detect defects
10+
- Used as a safety net to ensure non-regression
11+
12+
# Tests quality
13+
14+
- Non regression works if tests are good.

0 commit comments

Comments
 (0)