Ancestry.Daisy.Tests.Daisy.Component.TestExecutions.ItExecutesStatements C# (CSharp) Method

ItExecutesStatements() private method

private ItExecutesStatements ( string code, User data ) : bool
code string
data Ancestry.Daisy.Tests.Daisy.Component.Domain.User
return bool
        public bool ItExecutesStatements(string code, User data)
        {
            var exec = DaisyCompiler.Compile<User>(code, statements).Execute(data);
            return exec.Outcome;
        }