public void TestInitialize()
        {
            reportParser       = new Resharper.ReportParserLib.ResharperReportParser(true);
            toolExecuter       = new Resharper.ToolExecuterLib.ResharperToolExecuter();
            authenticationRepo = new DataAccessLayer.UserAuthenticationRepository.UserAuthenticationRepository(true);

            //Generate Report
            string path = @"C:\StaticAnalysisData\TestFiles\";

            toolExecuter.ExecuteTool("Admin", path);
            authenticationRepo.SignUp("Admin", "pass");
        }
コード例 #2
0
 private void SignUpUsers()
 {
     authenticationRepo.SignUp("Admin", "pass");
 }