How can I resolve this problem? I'm trying to make...
# announcements
h
How can I resolve this problem? I'm trying to make my class more testable. So I want to pass
val testService: TestService = TestServiceImpl(client)
into my
TestHandler
constructor. The problem is TestServiceImpl takes in a
client
and
client
is not really known until this line (line8) finished executing
val client = clientProviderInterfaceImpl.buildIoTClient(validatedResult)