Example #1
0
 private static string UnitTest2()
 {
     //instantiate new SharePointConnect object
     SharePointConnector myConnector = new SharePointConnector(myURL,myUser,myPassword);
     myConnector.getListNames();
     foreach (string curTitle in myConnector.ListNames)
     {
         Console.WriteLine(curTitle);
     }
     return "";
 }
Example #2
0
        private static string UnitTest1()
        {
            //string myURL, myUser, myPassword;
            myURL = "https://partners.myskanska.com/usa/teams/sit/hit/_vti_bin/lists.asmx";
            myUser = "******";
            myPassword = "******";

            //Console.Write("Enter Password: "******"";
            //ConsoleKeyInfo keystroke=new ConsoleKeyInfo();
            //bool keepGoing = true;
            //while (keepGoing)
            //{
            //    keystroke = Console.ReadKey(true);
            //    switch (keystroke.Key)
            //    {
            //        case ConsoleKey.Backspace:
            //            {
            //                //in leu of taking back from the paswordstring
            //                Console.Write("BACKSPACE");
            //                break;
            //            }
            //        case ConsoleKey.Enter:
            //            {
            //                keepGoing = false;
            //                Console.WriteLine();
            //                break;
            //            }
            //        default:
            //            {
            //                myPassword += keystroke.KeyChar;
            //                Console.Write("*");
            //                break;
            //            }
            //    }
            //}
            ///
            ///
            SharePointConnector mytestConnection = new SharePointConnector(myURL,myUser,myPassword);
            if (mytestConnection.connectToSP() == true)
            {
                //Console.WriteLine("Hurray");
                return "UnitTest1 = SUCCESS";
            }
            else
            {
                //Console.WriteLine("Nooooooo");
                return "UnitTest1 = FAILURE";
            }
        }
Example #3
0
 private static string UnitTest3()
 {
     SharePointConnector mytestConnection = new SharePointConnector(myURL, myUser, myPassword);
     if (mytestConnection.AddList("Elcin123","Elcin123",100) == true)
     {
         //Console.WriteLine("Hurray");
         return "UnitTest3 = SUCCESS";
     }
     else
     {
         //Console.WriteLine("Nooooooo");
         return "UnitTest3 = FAILURE";
     }
 }