I created a new project with Unity. In the project settings I set the field Root namespace to Assets.
I'm using the external package Entitas-Redux by installing it via Git url. In the code I will then have access to additional classes from the Entitas-Redux namespace.
I want to create unit tests for my scripts located in the Scripts folder, so I created a "Tests Assembly Folder" from the context menu. The current folder structure is
I get a warning that it couldn't find any test. So I have to tell the assembly definition ScriptTests where to search for the scripts.
That's why I added another assembly definition
Now I can associate the scripts assembly definition with the scripttests assembly definition. The problem is that the scripts assembly definition can't find the external package namespace anymore
How to fix this?
Should I remove the scripts assembly definition and add the scripts located in the scripts folder with another approach?


