Author: siwuzzz
Date: Tue May 22 20:47:05 2007
New Revision: 169
Modified:
trunk/clients/cs/src/unittests/appslivetests.cs
trunk/clients/cs/src/unittests/blogger.cs
trunk/clients/cs/src/unittests/caltest.cs
trunk/clients/cs/src/unittests/coretest.cs
trunk/clients/cs/src/unittests/gbase.cs
Log:
Added a new category to NUnit tests: LiveTests, so it's easy to run or exclude
the live tests from an automated job.
Modified: trunk/clients/cs/src/unittests/appslivetests.cs
==============================================================================
--- trunk/clients/cs/src/unittests/appslivetests.cs (original)
+++ trunk/clients/cs/src/unittests/appslivetests.cs Tue May 22 20:47:05 2007
@@ -14,7 +14,7 @@
/// Summary description for apps.
/// </summary>
[TestFixture]
- [Explicit]
+ [Category("LiveTest")]
public class GoogleAFYDTestSuite : BaseLiveTestClass
{
private string domainName;
Modified: trunk/clients/cs/src/unittests/blogger.cs
==============================================================================
--- trunk/clients/cs/src/unittests/blogger.cs (original)
+++ trunk/clients/cs/src/unittests/blogger.cs Tue May 22 20:47:05 2007
@@ -32,7 +32,8 @@
namespace Google.GData.Client.UnitTests
{
- [TestFixture]
+ [TestFixture]
+ [Category("LiveTest")]
public class BloggerTestSuite : BaseTestClass
{
Modified: trunk/clients/cs/src/unittests/caltest.cs
==============================================================================
--- trunk/clients/cs/src/unittests/caltest.cs (original)
+++ trunk/clients/cs/src/unittests/caltest.cs Tue May 22 20:47:05 2007
@@ -34,6 +34,7 @@
{
[TestFixture]
[Category("GoogleCalendar")]
+ [Category("LiveTest")]
public class CalendarTestSuite : BaseTestClass
{
Modified: trunk/clients/cs/src/unittests/coretest.cs
==============================================================================
--- trunk/clients/cs/src/unittests/coretest.cs (original)
+++ trunk/clients/cs/src/unittests/coretest.cs Tue May 22 20:47:05 2007
@@ -32,7 +32,7 @@
namespace Google.GData.Client.UnitTests
{
- [TestFixture]
+ [TestFixture]
public class CoreTestSuite : BaseTestClass
{
//////////////////////////////////////////////////////////////////////
Modified: trunk/clients/cs/src/unittests/gbase.cs
==============================================================================
--- trunk/clients/cs/src/unittests/gbase.cs (original)
+++ trunk/clients/cs/src/unittests/gbase.cs Tue May 22 20:47:05 2007
@@ -32,6 +32,7 @@
namespace Google.GData.Client.UnitTests
{
[TestFixture]
+ [Category("LiveTest")]
public class GBatchTestSuite : BaseTestClass
{
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---