Posts about testing

An Easy Way to Load Test Your Web Apps
12 Feb 2021

An Easy Way to Load Test Your Web Apps

This time, I want to share my positive experience of load testing of one of our web services, by using K6 tool. Moreover, we will see how easily we can integrate this into the GitLab CI pipeline.

load testing k6 GitLab CI/CD testing
How to test database interactions in golang applications
22 Dec 2020

How to test database interactions in golang applications

Testing of functions with database interactions always was challenging. Recently, I found a wonderful library go-sqlmock which will simplify writing tests and mocking database queries in golang applications a lot.

go testing sql