From 2a0dcf2a08d9e9e7c40c6754a92eff1a8e71df8e Mon Sep 17 00:00:00 2001 From: Daniel Albuschat Date: Sun, 28 Jun 2015 09:07:23 +0200 Subject: [PATCH 1/3] Update 02-Use_the_Tools_Available.md Added Boost.Test to the list of unit test frameworks --- 02-Use_the_Tools_Available.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 8f07711..2c462df 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -180,7 +180,7 @@ If it is determined by team consensus that the compiler or analyzer is warning o CMake, mentioned above, has a built in framework for executing tests. Make sure whatever build system you use has a way to execute tests built in. -To further aid in executing tests, consider a library such as [Google Test](https://code.google.com/p/googletest/) or [Catch](https://github.com/philsquared/Catch) to help you organize the tests. +To further aid in executing tests, consider a library such as [Google Test](https://code.google.com/p/googletest/) or [Catch](https://github.com/philsquared/Catch) or [Boost.Test](http://www.boost.org/doc/libs/1_55_0/libs/test/doc/html/index.html) to help you organize the tests. ### Unit Tests From c02b086a48079f07e6a3cec294b7d33a2f3eb775 Mon Sep 17 00:00:00 2001 From: Daniel Albuschat Date: Sun, 28 Jun 2015 09:08:31 +0200 Subject: [PATCH 2/3] Update 02-Use_the_Tools_Available.md Fixed punctuation --- 02-Use_the_Tools_Available.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 2c462df..e7dc9e1 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -180,7 +180,7 @@ If it is determined by team consensus that the compiler or analyzer is warning o CMake, mentioned above, has a built in framework for executing tests. Make sure whatever build system you use has a way to execute tests built in. -To further aid in executing tests, consider a library such as [Google Test](https://code.google.com/p/googletest/) or [Catch](https://github.com/philsquared/Catch) or [Boost.Test](http://www.boost.org/doc/libs/1_55_0/libs/test/doc/html/index.html) to help you organize the tests. +To further aid in executing tests, consider a library such as [Google Test](https://code.google.com/p/googletest/), [Catch](https://github.com/philsquared/Catch) or [Boost.Test](http://www.boost.org/doc/libs/1_55_0/libs/test/doc/html/index.html) to help you organize the tests. ### Unit Tests From f809f55216950446efd6b44651148b2c6b1dcac7 Mon Sep 17 00:00:00 2001 From: Daniel Albuschat Date: Sun, 28 Jun 2015 12:36:59 +0200 Subject: [PATCH 3/3] Update 02-Use_the_Tools_Available.md Added Visual Studio Online for Source Control and Continuous Integration --- 02-Use_the_Tools_Available.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index e7dc9e1..1399db4 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -10,6 +10,7 @@ Source control is an absolute necessity for any software development project. If * [Bitbucket](https://bitbucket.org/) - allows for unlimited private repositories with up to 5 collaborators, for free. * [SourceForge](http://sourceforge.net/) - open source hosting only. * [GitLab](https://gitlab.com/), Subversion, BitKeeper, many many others... The above are the most popular free services. + * [Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs) - allows for unlimited public repositories, must pay for private repository. Repositories can be git or TFVC. Additionally: Issue tracking, project planning (multiple Agile templates, such as SCRUM), integrated hosted builds, integration of all this into Microsoft Visual Studio. Windows only. ## Build Tool @@ -44,6 +45,12 @@ Continuous Integration (CI) tools automatically build the source code as changes * simple ad-hoc continuous integration that posts results to GitHub * supports Windows, OS X, and Linux * used by [ChaiScript](http://chaiscript.com/ChaiScript-BuildResults/full_dashboard.html) + * [Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs) + * Tightly integrated with the source repositories from Visual Studio Online + * Uses MSBuild (Visual Studio's build engine), which is available on Windows, OS X and Linux + * Provides hosted build agents and also allows for user-provided build agents + * Can be controlled and monitored from within Microsoft Visual Studio + * On-Premise installation via Microsoft Team Foundation Server If you have an open source, publicly-hosted project on GitHub: @@ -193,4 +200,3 @@ There should be a test enabled for every feature or bug fix that is committed. S ### Negative Testing Don't forget to make sure that your error handling is being tested and works properly as well. This will become obvious if you aim for 100% code coverage. -