Skip to content

Commit ee34104

Browse files
committed
Fix Markdown linter warnings.
1 parent c6f695f commit ee34104

File tree

6 files changed

+40
-54
lines changed

6 files changed

+40
-54
lines changed

csharp-xunit/README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@
22

33
See [README.md inside WordCount](WordCount/README.md).
44

5-
### Time Spent
5+
## Time Spent
66

77
* 30' copy project and setup
88
* 3h convert exercises
99
* 2h finish convert exercises
1010
* 30' project setup with packaging
1111
* 1h commenting out assertions script
12-
13-
### License
14-
15-
[New BSD License](http://opensource.org/licenses/bsd-license.php), see `license.txt` in repository.

csharp-xunit/WordCount/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# C#-xUnit-Koans #
1+
# C#-xUnit-Koans
22

3-
C# [Testing Koans](http://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [xUnit.net](https://xunit.github.io/).
3+
C# [Testing Koans](https://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [xUnit.net](https://xunit.github.io/).
44

5-
## Dependencies ##
5+
## Dependencies
66

77
This is a .NET Core 2.0 project. The programming language is C# 7.1 (Visual Studio 2017 version 15.3).
88

99
Additional exercises cover [NHamcrest](https://github.com/nhamcrest/NHamcrest) and [FluentAssertions](https://fluentassertions.com/). Run `dotnet restore` to install the dependencies.
1010

11-
## Assignment ##
11+
## Assignment
1212

1313
* Run tests with `dotnet test` or script `run_tests`.
1414
* You should see some test failures and errors (but there are no assertions).
1515
* Go through the test code starting from Session 1:
16-
* All assertions are commented and incomplete.
17-
* Uncomment the assertions and complete them making the tests pass.
18-
* You can run individual sessions using `dotnet test --filter Session1`
16+
* All assertions are commented and incomplete.
17+
* Uncomment the assertions and complete them making the tests pass.
18+
* You can run individual sessions using `dotnet test --filter Session1`

java-junit/README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# JUnit-Koans
2-
Java [Testing Koans](http://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [JUnit](http://junit.org/).
32

4-
## Dependencies ##
3+
Java [Testing Koans](https://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [JUnit](http://junit.org/).
4+
5+
## Dependencies
56

67
* This is a Java 7 project.
78
* This is an [Apache Maven](https://maven.apache.org/) project.
@@ -11,14 +12,11 @@ Additional exercises cover [JUnitParams](http://pragmatists.github.io/JUnitParam
1112
[catchException](https://github.com/Codearte/catch-exception) and
1213
[AssertJ](http://joel-costigliola.github.io/assertj/).
1314

14-
## Assignment ##
15+
## Assignment
1516

1617
* Run tests with `mvnw test`.
1718
* You should see some test failures and errors (but there are no assertions).
1819
* Go through the test code starting from Session 1:
19-
* All assertions are commented and incomplete.
20-
* Uncomment the assertions and complete them making the tests pass.
21-
* You can run individual sessions using `mvnw test -Dtest=*1*`
22-
23-
### License ###
24-
[New BSD License](http://opensource.org/licenses/bsd-license.php), see `license.txt` in repository.
20+
* All assertions are commented and incomplete.
21+
* Uncomment the assertions and complete them making the tests pass.
22+
* You can run individual sessions using `mvnw test -Dtest=*1*`

java-junit5/README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# JUnit5-Koans
2-
Java [Testing Koans](http://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [JUnit 5](http://junit.org/junit5).
32

4-
## Dependencies ##
3+
Java [Testing Koans](https://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [JUnit 5](http://junit.org/junit5).
4+
5+
## Dependencies
56

67
* This is a Java 8 project.
78
* It supports both [Apache Maven](https://maven.apache.org/) and [Gradle](https://gradle.org).
@@ -10,14 +11,11 @@ Additional exercises cover [junit-jupiter-params](https://junit.org/junit5/docs/
1011
[Hamcrest](http://hamcrest.org/JavaHamcrest/) and
1112
[AssertJ](http://joel-costigliola.github.io/assertj/).
1213

13-
## Assignment ##
14+
## Assignment
1415

1516
* Run tests with `mvnw test` or `gradlew test`.
1617
* You should see some test failures and errors (but there are no assertions).
1718
* Go through the test code starting from Session 1:
18-
* All assertions are commented and incomplete.
19-
* Uncomment the assertions and complete them making the tests pass.
20-
* You can run individual sessions using `mvnw test -Dtest=*1*`
21-
22-
### License ###
23-
[New BSD License](http://opensource.org/licenses/bsd-license.php), see `license.txt` in repository.
19+
* All assertions are commented and incomplete.
20+
* Uncomment the assertions and complete them making the tests pass.
21+
* You can run individual sessions using `mvnw test -Dtest=*1*`

php-phpunit/README.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1-
# PHPUnit-Koans #
1+
# PHPUnit-Koans
22

3-
PHP [Testing Koans](http://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [PHPUnit](https://phpunit.de/).
3+
PHP [Testing Koans](https://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [PHPUnit](https://phpunit.de/).
44

5-
## Dependencies ##
5+
## Dependencies
66

77
This is a [Composer](https://getcomposer.org/) project.
88

99
Additional exercises cover [Hamcrest matchers](https://github.com/hamcrest/hamcrest-php).
1010
Run `composer install` to install the required dependencies.
1111

12-
## Assignment ##
12+
## Assignment
1313

1414
* Run tests with `phpunit` (or `vendor/bin/phpunit`).
1515
* You should see some test failures and errors (but there are no assertions).
1616
* Go through the test code starting from Session 1:
17-
* All assertions are commented and incomplete.
18-
* Uncomment the assertions and complete them making the tests pass.
19-
* You can run individual sessions using `phpunit test/Session1_GreeterTest.php`.
20-
21-
### License ###
22-
[New BSD License](http://opensource.org/licenses/bsd-license.php), see `license.txt` in repository.
17+
* All assertions are commented and incomplete.
18+
* Uncomment the assertions and complete them making the tests pass.
19+
* You can run individual sessions using `phpunit test/Session1_GreeterTest.php`.

python-unittest/README.md

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
1-
# Python-Unittest-Koans #
1+
# Python-Unittest-Koans
22

3-
Python [Testing Koans](http://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [unittest](https://docs.python.org/2/library/unittest.html).
3+
Python [Testing Koans](https://blog.code-cop.org/2015/12/testing-koans.html) to understand how to write unit tests with [unittest](https://docs.python.org/2/library/unittest.html).
44

5-
## Dependencies ##
5+
## Dependencies
66

7-
This is a Python project. It is compatible with both Python 2 and 3.
7+
This is a Python project. It is compatible with both Python 2 and 3.
88
Required dependencies are listed in [`requirements.txt`](requirements.txt).
99

10-
Additional exercises cover [parameterized](https://github.com/wolever/parameterized),
10+
Additional exercises cover [parameterized](https://github.com/wolever/parameterized),
1111
[PyHamcrest](https://github.com/hamcrest/PyHamcrest) and
12-
[assertpy](https://github.com/ActivisionGameScience/assertpy).
13-
Run `pip install -r requirements.txt` to install the required packages.
12+
[assertpy](https://github.com/ActivisionGameScience/assertpy).
13+
Run `pip install -r requirements.txt` to install the required packages.
1414
Alternatively the dependencies are available in the `packages` folder.
1515

16-
## Assignment ##
16+
## Assignment
1717

1818
* Run script `run_tests` (or `python -m unittest discover test`).
1919
* You should see some test failures and errors (but there are no assertions).
2020
* Go through the test code starting from Session 1:
21-
* All assertions are commented and incomplete.
22-
* Uncomment the assertions and complete them making the tests pass.
23-
* You can run individual sessions using `python -m unittest test.test_session1_greeter` (Note: Unittest looks for modules not files. Make sure to use `test.` not `test/` and no trailing `.py`.)
24-
25-
### License ###
26-
[New BSD License](http://opensource.org/licenses/bsd-license.php), see `license.txt` in repository.
21+
* All assertions are commented and incomplete.
22+
* Uncomment the assertions and complete them making the tests pass.
23+
* You can run individual sessions using `python -m unittest test.test_session1_greeter` (Note: Unittest looks for modules not files. Make sure to use `test.` not `test/` and no trailing `.py`.)

0 commit comments

Comments
 (0)