Marta Gilberti Marta Gilberti avatar

10 minute read

The technical writer, this mysterious character

Let’s face it, being a technical writer (especially in Italy) makes you feel a bit like Barney Stinson from How I Met Your Mother: no one knows what your real job is. If you’re a tech writer, we bet you have at least one relative who, at every family gathering, asks you “What do you exactly do for a living?”. In the most desperate cases, even your mom doesn’t know what your job is!

Carlo Cappai Carlo Cappai avatar

5 minute read

Introduction

When we write a client to integrate an API in our systems it is important to test it to be sure we can handle every possible response. Guzzle client provides a very simple way to mock external APIs responses: Guzzle Mock Handler. This tool provides a mock handler that can be used to fulfill HTTP requests with a response or exception by shifting return values off of a queue.

Andrea Maccis Andrea Maccis avatar

11 minute read

Introduction

Imagine you need to use a fixed numeric value in your code, let’s say 20000. It is what we call a literal constant, that is a value that will always remain the exact same in your code.
Now imagine you need to use that value more than once. Sooner or later you will read your code and you will not remember what 20000 was, it will happen for sure. But what if you assign the value to an immutable variable with a meaningful name? Let’s say something like this:

Andrea Gubellini Andrea Gubellini avatar

7 minute read

Why do I need to test?

Everyone who works in software development has stumbled upon software testing.

Why should a developer know anything about testing?
Well, software testing is a valuable asset and a big part of development: it does not only test the application, it also teaches to think outside the box and to write code with quality in mind.

Software testing is not finding bugs

The goal of software testing is not only to find bugs and “break things”. Testing can range from a pure exploration of functionalities to a deep understanding of the tested application. Testing can give an idea of what, why and how the application is tested together with the guiding concept of quality.

Carmine Laface Carmine Laface avatar

8 minute read

The goal of this article is to define basic concepts related to testing, trying not to take anything for granted.

Why do we test??

Why is it important to write automated tests? I asked myself and I did some research because the answer to this question was not obvious to me. I knew it was important but I didn’t know why. So, I decided to try to explain it starting from a point of view as impartial as possible.