What is „Single Responsibility Principle” (SRP)? It is the first rule of the SOLID design rules (it stands for S in SOLID acronym). Definition Every…
Latest Posts
Test Driven Development
What is Test Driven Development (TDD)? Test Driven Development (TDD) refers to programminmg style, where feature development starts with coding a test. Once we have…
How to write good unit tests?
What is unit testing? Unit testing is a type of software testing where individual units or components of a software are tested. The purpose is…
Weather application in Java
This time I would like to show you guys Weather application project, which I made completly from beginning using Java. Code repository: https://github.com/mglowinski93/WeatherApp …