Effective Test Parameterization with ScalaTest Tables
Make your tests more readable and maintainable

Search for a command to run...
Articles tagged with #scala-basics
Make your tests more readable and maintainable

How to leverage Scala-CLI, Scala Toolkit, and Scastie to kickstart your journey into the exciting Scala world.

SBT: Unlocking its Power with Not-So-Common Features and Especially for Newbies

Scala 3's enhanced Tuple datatype enables element access by position, supports tuples comprising beyond 22 elements, and introduces supplementary methods and combinators, ultimately improving user experience. Introduction Tuple is a special type of ...

Learn about the various approaches to exception handling in Scala, and discover a peculiar situation that may arise while using scala.util.Try. This blog post delves into the fact that scala.util.Try is designed to handle only NonFatal exceptions, an...

Introduction Self Types are a way of specifying the dependencies for a class/trait in Scala. Using this, the compiler can enforce to provide the required dependencies while instances are created. This is widely used in Scala, especially in cake patte...
