Initial Commit of TestTool

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@615 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
lonecoder
2006-11-22 00:09:31 +00:00
parent 12f256a1fe
commit 3fb3c976c8
20 changed files with 956 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace libsecondlife.TestTool
{
class Program
{
static void Main(string[] args)
{
if (args.Length < 3)
{
Console.WriteLine("Usage: TestTool.exe firstname lastname password [Master Name]");
return;
}
string masterName = String.Empty;
for (int ct = 3; ct < args.Length;ct++)
masterName = masterName + args[ct] + " ";
TestTool testTool = new TestTool(args[0], args[1], args[2], masterName.TrimEnd());
testTool.Run();
}
}
}