``` class Goo(val something: Big = Injekt.get()) {...
# kohesive
a
Copy code
class Goo(val something: Big = Injekt.get()) { 
   ...
}

// in normal code:

val g = Goo()

// in test code:

val g = Goo(MockedBigThing())