BugzillaInterface.SplatterCore.TestStuff C# (CSharp) Метод

TestStuff() публичный Метод

public TestStuff ( ) : void
Результат void
        public void TestStuff()
        {
            // Create a new repository and log in
            Repository source = new Repository ();
            source.Name = "Bugzilla Landfill";
            source.Url = "https://landfill.bugzilla.org/bugzilla-3.4-branch/xmlrpc.cgi";
            source.UserName = "[email protected]";
            source.Password = "opeth";
            // not my real password, don't worry
            source.Proxy = "http://10.3.100.211:8080";
            if (source.LoginAndVerify ()) {
                source.FetchLegalValues();
                Sources.Add(source);
                //Query q1 = new Query();
                //Queries.Add(q1);
                //q1.SourceID = 0;
                //q1.TestStuff();
                SaveState();
            }
        }