Improve integration testing

This commit is contained in:
Pieter-Jan Briers
2019-06-29 01:58:16 +02:00
parent e8498d1bb2
commit f97977323a
12 changed files with 177 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
using System;
using Content.Shared;
namespace Content.Server
{
public sealed class ServerModuleTestingCallbacks : SharedModuleTestingCallbacks
{
public Action ServerBeforeIoC { get; set; }
}
}