Continuous Integration (CI) is a practice in software development when it’s encouraged to submit your code to the main repository very often – up to several times a day. Thus everyone the code is tested[…]
Category: Unit Test
Web development modern style (.NET Core, C#) with unit test and continuous integration
We are continuing Web development, but this time we will use completely different approach and will use new offering from Microsoft – .NET CoreWe already met .NET Core, so please take a look at it[…]
GoogleTest, Unit Test for C++
There are several unit test frameworks for C/C++ but we will take a look at Google Test. First you will need to download and build it. It’s available here. Follow the instructions how to build[…]
JUnit, unit test for Java
In one of the previous posts about Ant we mentioned that Ant supports JUnit unit test. Now let’s talk about JUnit itself. Basic tutorial is available at the source, so we will go a little[…]
Ant
If, after reading Java post, someone is curious if it’s possible to use makefile to compile Java applications – the answer would be yes. But there are better ways to do it. One of them[…]