mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-02-08 05:30:59 -05:00
- Added Sandbox.Test.Unit project (contains independent tests that can run in parallel) - Modify some slow/stress tests (e.g. instead of doing a million iterations settle for 10k). Tests run almost twice as fast now.
19 lines
744 B
C#
19 lines
744 B
C#
global using Sandbox.Diagnostics;
|
|
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Diagnostics;
|
|
global using System.Linq;
|
|
global using System.Text;
|
|
global using System.Threading.Tasks;
|
|
global using static Sandbox.Internal.GlobalSystemNamespace;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: InternalsVisibleTo( "Sandbox.Test" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Test.Unit" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Tools" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Menu" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.GameInstance" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Engine" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Compiling" )]
|
|
[assembly: InternalsVisibleTo( "Sandbox.Compiling.Test" )]
|