using Discord.Commands; using System.Collections.Generic; using System.Linq; namespace Discord.Net.Commands.Tests { partial class CommandServiceConfigTests { public static IEnumerable SeparatorNodeTestData => _separatorNodeTestData; private static readonly IEnumerable _separatorNodeTestData = new List { new CommandServiceConfig{ SeparatorChar = ' '}, new CommandServiceConfig{ SeparatorChar = '_'}, new CommandServiceConfig{ SeparatorChar = '.'}, new CommandServiceConfig{ SeparatorChar = '\u200b'}, new CommandServiceConfig{ SeparatorChar = '"'} }.Select(x => new object[] { x, x.SeparatorChar }); public static IEnumerable DefaultAliases => _defaultAliases; private static readonly IEnumerable _defaultAliases = new List { "debug ping", "debug pong" }; } }