Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 427 Bytes

File metadata and controls

12 lines (7 loc) · 427 Bytes

Data Classes

Data classes basically make Lombok obsolete. You can have immutable classes with the basic methods implemented out of the box.

Official Docs

https://kotlinlang.org/docs/reference/data-classes.html

Problem

  • The test is failing because the instances are not actually equal. How to fix it?
  • We want to make a copy of our class, but we are introducing a lot of duplication. What can be done about it?