download NDataUnitArguments.cs
Language: C#
License: GPL
Copyright: (C) 2006 Mark Garner
LOC: 16
Project Info
ndataunit - NDataUnit is a tool for perfor...Se...(ndataunit)
Server: Google
Type: svn
...\ndataunit\trunk\NDataUnit\
   CommandLineArguments.cs
   ExampleSuite_AW2000.xml
   LogWriter.cs
   NDataUnit.csproj
   NDataUnit.csproj.user
   NDataUnitArguments.cs
   Program.cs
   TestSuite.cs

/*
Copyright (C) 2006  Mark Garner

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

using System;
using CommandLine;

namespace NDataUnit
{
    class NDataUnitArguments
    {
        [Argument(ArgumentType.Required, ShortName = "S", HelpText = "Target server")]
        public string targetServerName;
        [Argument(ArgumentType.Required, ShortName = "d", HelpText = "Target database")]
        public string targetDatabaseName;
        [Argument(ArgumentType.Required, ShortName = "f", HelpText = "Path to xml test script file")]
        public string testScriptPath;
        [Argument(ArgumentType.AtMostOnce, ShortName = "l", HelpText = "Path to output log file")]
        public string outputLogFilePath;
    }
}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us