You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2023. It is now read-only.
There should be a way to provide the value of inner :StreamsBuilder So that the library must not create its own version of StreamBuilder like in case of using https://github.com/jpzk/mockedstreams library for unit Testing.
For now The workaround is making a separate class that Extends StreamsBuilderS and then overriding inner there:
class StreamSTest(streamBuilder: StreamsBuilder) extends StreamsBuilderS {
override val inner = streamBuilder
}