Mario Fernandez

  • About
  • Talks
  • Blog
  • Tags

Book Review: Software Engineering at Google

2023/12/10Book ReviewSoftware EngineeringPracticesTesting
Software engineering at Google offers an interesting peek at how Google develops software internally

Book Review: Unit Testing

2023/04/18Book ReviewSoftware EngineeringPracticesTesting
Unit testing is a book about testing that you should not skip, as it is an excellent source to improve your testing skills

Fail a test in Jest if an unexpected network request happens

2019/12/08ReactJestTestingreact-testing-librarycreate-react-appaxios
Automatically failing unit tests with Jest in React when network requests are made will make your tests more reliable and easier to maintain

How to split the deployment of your front end and back end with the help of Consumer Driven Contract Testing

2019/11/12TestingContract TestingPactContinuous DeliveryJestCircleCI
By using contract tests, you can build more independent frontend and backends that can be deployed separately. That way, you can get faster feedback

Kotlin tapas: Get a taste of Kotlin

2019/10/27KotlinTapasTesting
A bunch of bite sized tapas to get a first taste of Kotlin

Descriptive assertions in Kotlin for clearer tests

2019/09/28KotlinTestingStrikt
Readable assertions will make your Kotlin code a lot more self describing and your tests more maintainable

Mock verification in Kotlin using MockK and Atrium

2019/05/27KotlinTestingMockKSpringBootAtrium
When working with Kotlin you might need to build some non trivial mocks that need to be verified. Here is how to do it by combining MockK and Atrium

Recording APIs with WireMock

2018/09/10JavaWireMockSpringBootTesting
Using WireMock to record third party API calls you can get high quality mocks that reflect reality and are much easier to maintain