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
* Rename unit test project #1018
* Rework of unit tests project layout #1018
* Update old unit tests project name in build ci #1018
* Fix conflicts after rebase onto main
* Update dotnet sdk to 6.0.400 #1059
* Add cast to JProperty on ConfigHelper.GetEnvironmentVariables to fix Roslyn error
Is your feature request related to a problem? Please describe.
Currently, it is difficult
AzureIoTHub.Portal.Server.Tests.Unit
Describe the solution you'd like
Unit tests of each dotnet project should be placed on a dedicated folder.
Example of the layout of the unit test project:
. └── AzureIoTHub.Portal.Server.Tests.Unit/ ├── Client/ │ ├── Components/ │ │ └── ... │ ├── Pages/ │ │ └── ... │ ├── Services/ │ │ └── ... │ └── Shared/ │ └── ... ├── Server/ │ ├── Controllers/ │ │ └── ... │ ├── Services/ │ │ └── ... │ └── ... └── Shared/ ├── Constants/ │ └── ... ├── Models/ │ └── ... └── ...
The text was updated successfully, but these errors were encountered: