ff0224d28d
- `TestModuleStructureFactory.createProjectStructureByTestStructure` created `KtModule`s for each test module and then also created new `KtModule`s for binary dependencies. This split worked as long as no binary dependency was also a test module and thus part of the main modules. But if not, `addLibraryDependencies` created a duplicate `KtModule`, instead of referring to the existing binary module. - The fix registers a main binary library module in the library cache before it can become the dependency of another main module. Because main modules can only depend on main modules preceding them in the list, a separate pass over all main modules is not needed. ^KT-64647 fixed