This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameservicewarden/tests/GameServiceWarden.Core.Tests/Modules/Games/FakeServiceModule.cs
Harrison Deng 35a2765559 Changed logging system to be event based.
Implemented LRUCache for instantiating services without starting.

Service state changed back to enumerator.

Namespace refactoring.
2021-04-19 01:34:45 -05:00

25 lines
751 B
C#

using System.Collections.Generic;
using GameServiceWarden.API.Module;
namespace GameServiceWarden.Core.Tests.Modules.Games
{
public class FakeServiceModule : IServiceModule
{
public string Name => "FakeModule";
public string Description => "A fake module for testing.";
private IServiceConfigurable[] configurables;
public FakeServiceModule(params IServiceConfigurable[] configurables)
{
this.configurables = configurables;
}
public IEnumerable<string> Authors { get; private set; } = new string[] { "FakeAuthor", "FakeAuthor2" };
public IService InstantiateService(string workspace)
{
return new FakeService(configurables);
}
}
}