Re-organize all projects (#4166)

This commit is contained in:
DrSmugleaf
2021-06-09 22:19:39 +02:00
committed by GitHub
parent 9f50e4061b
commit ff1a2d97ea
1773 changed files with 5258 additions and 5508 deletions

View File

@@ -1,9 +1,12 @@
using System.Collections.Generic;
using System.Reflection;
using Content.Client;
using Content.Client.IoC;
using Content.Server;
using Content.Server.IoC;
using Content.Shared;
using Robust.UnitTesting;
using EntryPoint = Content.Server.EntryPoint.EntryPoint;
namespace Content.Tests
{
@@ -34,11 +37,11 @@ namespace Content.Tests
if (Project == UnitTestProject.Server)
{
l.Add(typeof(Content.Server.EntryPoint).Assembly);
l.Add(typeof(EntryPoint).Assembly);
}
else if (Project == UnitTestProject.Client)
{
l.Add(typeof(Content.Client.EntryPoint).Assembly);
l.Add(typeof(Content.Client.EntryPoint.EntryPoint).Assembly);
}
l.Add(typeof(ContentUnitTest).Assembly);