BnS_ACT_Plugin.Test.LogParse_Regex.LogParse_Regex_buff_simple C# (CSharp) Method

LogParse_Regex_buff_simple() private method

private LogParse_Regex_buff_simple ( ) : void
return 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");
        }