How does one use the `internal` keyword inside the...
# gradle
c
How does one use the
internal
keyword inside the same module for say
integrationTests
(eg. as per the above definition it can be used across
main
and
unit
in the same module)?
i
Currently
internal
declarations from main source set are only visible inside test source set of the same project.
c
OK - so that sounds like a hard restriction. Any reason why this cannot be extended to any other source set (extending test) ?
i
There was a discussion about that recently and it seems that the visibility of internal could be extended to all source sets of a project.