Author: siwuzzz
Date: Fri Jul 27 10:47:21 2007
New Revision: 210
Modified:
trunk/clients/cs/src/unittests/gbase.cs
Log:
src/unittests/gbase.cs:
- Fixed the userName/passWord members
Modified: trunk/clients/cs/src/unittests/gbase.cs
==============================================================================
--- trunk/clients/cs/src/unittests/gbase.cs (original)
+++ trunk/clients/cs/src/unittests/gbase.cs Fri Jul 27 10:47:21 2007
@@ -33,15 +33,6 @@
[Category("LiveTest")]
public class GBatchTestSuite : BaseLiveTestClass
{
-
- /// <summary>holds the username to use</summary>
- protected string userName;
- /// <summary>holds the password to use</summary>
- protected string passWord;
-
- /// <summary>holds the default authhandler</summary>
- protected string strAuthHandler;
-
private string gBaseURI; // holds the base uri
private string gBaseKey; // holds the key
@@ -87,25 +78,10 @@
{
base.ReadConfigFile();
- if (unitTestConfiguration.Contains("authHandler") == true)
- {
- this.strAuthHandler = (string)
unitTestConfiguration["authHandler"];
- Tracing.TraceInfo("Read authHandler value: " +
this.strAuthHandler);
- }
if (unitTestConfiguration.Contains("gBaseURI") == true)
{
this.gBaseURI = (string) unitTestConfiguration["gBaseURI"];
Tracing.TraceInfo("Read gBase URI value: " + this.gBaseURI);
- }
- if (unitTestConfiguration.Contains("userName") == true)
- {
- this.userName = (string) unitTestConfiguration["userName"];
- Tracing.TraceInfo("Read userName value: " + this.userName);
- }
- if (unitTestConfiguration.Contains("passWord") == true)
- {
- this.passWord = (string) unitTestConfiguration["passWord"];
- Tracing.TraceInfo("Read passWord value: " + this.passWord);
}
if (unitTestConfiguration.Contains("gBaseKey") == true)
{
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---