9e74dac5ed
fix potential lost penalty if server does not response to kick request make sure that broadcast only shows one custom say name add unit tests
23 lines
756 B
C#
23 lines
756 B
C#
using IW4MAdmin.Application.RconParsers;
|
|
using SharedLibraryCore.Configuration;
|
|
using SharedLibraryCore.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ApplicationTests.Fixtures
|
|
{
|
|
public class ConfigurationGenerators
|
|
{
|
|
public static ServerConfiguration CreateServerConfiguration() => new ServerConfiguration() { IPAddress = "127.0.0.1", Port = 28960 };
|
|
public static IRConParserConfiguration CreateRConParserConfiguration(IParserRegexFactory factory) => new DynamicRConParserConfiguration(factory)
|
|
{
|
|
CommandPrefixes = new SharedLibraryCore.RCon.CommandPrefix()
|
|
{
|
|
Kick = "kick",
|
|
Say = "say"
|
|
}
|
|
};
|
|
}
|
|
}
|