BnS_ACT_Plugin.Test.LogParse_Regex.LogParse_Regex_buff_simple C# (CSharp) Méthode

LogParse_Regex_buff_simple() private méthode

private LogParse_Regex_buff_simple ( ) : void
Résultat void
        public void LogParse_Regex_buff_simple()
        {
            string testLine = "Critical Bonus is now active.";

            Match m = BNS_ACT_Plugin.LogParse.regex_buff.Match(testLine);

            Assert.IsTrue(m.Groups["skill"].Success && m.Groups["skill"].Value == "Critical Bonus");
        }