From the course: Bamboo Essential Training (2018)

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Code inspection

Code inspection

- [Instructor] So, so far we managed to run unit tests in order to check the quality of the committed code. Another thing you can do is to run some kind of code inspection, because as you know, the main purpose of having a continuous integration system in place, is that you want to make sure that every single change that is committed by different developers into your master repository has an acceptable level of quality. So apart from making sure that tests are passing, you have to make sure that also the quality of the code in terms of style and using the language is good as well. For example, if you be a Dot Net developer, you can use tools such as FxCop, StyleCop, or even ReSharper Command Line Tools, which we want to do in this topic. With ReSharper Command Line Tools, you can perform two things on your code inspection first, and then second, finding the code duplicates. And you can do it if you are a Dot Net developer, or if you are a Java developer. But if you are like a PHP…

Contents