mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Robust.UnitTesting was both ALL tests for RT, and also API surface for content tests. Tests are now split into separate projects as appropriate, and the API side has also been split off.
13 lines
448 B
C#
13 lines
448 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: InternalsVisibleTo("Robust.UnitTesting")]
|
|
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
|
|
[assembly: InternalsVisibleTo("Robust.Benchmarks")]
|
|
[assembly: InternalsVisibleTo("Robust.Shared.IntegrationTests")]
|
|
[assembly: InternalsVisibleTo("Robust.Server.IntegrationTests")]
|
|
[assembly: InternalsVisibleTo("Robust.Server.Testing")]
|
|
|
|
#if NET5_0_OR_GREATER
|
|
[module: SkipLocalsInit]
|
|
#endif
|