Wszystkie artykuły
Introduction to Apache Cordova
If you want to create a mobile app for Android/iOS/Blackberry but you do not have time to learn each of these technologies, Apache Cordova is for you.
So let’s talk about creational design patterns
Design patterns are present probably in all the interviews for software development related positions, sometimes even on the junior level.
Spock vs Junit with Mockito
Spock and JUnit are frameworks for unit testing of Java applications. Mockito is a well – known and stable library of mocking extensions for JUnit to write tests in Java language.
Python – setting up the environment
Python is a multi-paradigm, general purpose interpreted high level language with dynamic typing, automatic memory management. Introduction Python is a multi-paradigm, general purpose interpreted high […]
JSQL – easy way to test & maintain your SQL in Java
JSQL Parser is open source library developed under dual license: LGPL V2.1 and Apache Software License. Main responsibility of the framework is parsing of SQL […]
Testing in React
A few approaches for React Testing. It won’t be focused on the detailed configuration of each tool but it rather show how to embrace tool […]
Creating game for android using JavaScript #1 | How to start
Few years ago, when Android had taken lead of the mobile market, I had decided to create game and become a millionaire as a “thousands” […]
TDD in practice
Test Driven Development is one of fundamental practices in the Agile methodology.
Deep Equality in C# for Unit Testing
This article presents a short overview of methods of deep comparison between objects in Unit Tests.
Given-When-Then pattern in unit tests
We can say that it is a style/template how we can describe some functionality (system behavior) in more readable and natural for human way.