VssMother.cs :  » Build-Systems » CruiseControl.NET » ThoughtWorks » CruiseControl » UnitTests » Core » Sourcecontrol » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » CruiseControl.NET 
CruiseControl.NET » ThoughtWorks » CruiseControl » UnitTests » Core » Sourcecontrol » VssMother.cs
using System;
using System.IO;

namespace ThoughtWorks.CruiseControl.UnitTests.Core.Sourcecontrol{
  public class VssMother
  {
    public static TextReader ContentReader
    {
      get
      {
        return new StringReader(VSS_LOGFILE_CONTENT);
      }
    }

    public static readonly DateTime OLDEST_ENTRY = DateTime.Parse("2002/09/16 14:29:00");
    public static readonly DateTime NEWEST_ENTRY = DateTime.Parse("2002/12/26 14:38:00");

    #region VSS_LOGFILE_CONTENT
    public static string VSS_LOGFILE_CONTENT 
    {
      // todo: add a multi-line comment, the 1+nth line of which starts with 
      // our ***** delimiter, just to mess with our parsing assumptions
      get 
      {
        return @"Building list for $/ccnetTestProject..

*****  New Text Document2.txt  *****
Version 2
User: Mctwo        Date: 12/26/02   Time:  2:39p
Checked in
$/CCNETTest/CCNETTEST/level1/level2/level3/level4/level5/level6/level7/level8
Comment: checking my changes in

*****  Class1.cs  *****
Version 2
User: Mctwo        Date: 12/26/02   Time:  2:30p
Checked in $/CCNETTest/CCNETTEST
Comment: this is a really long comment since that might show a problem in the
parser this is a really long comment since that might show a problem in the
parser
this is a really long comment since that might show a problem in the parser
this is a really long comment since that might show a problem in the parser
this is a really long comment since that might show a problem in the parser

*****************  Version 11  *****************
Label: ""1.2.3""
User: Mctwo        Date: 12/26/02   Time:  2:21p
Labeled
Label comment: this is a label comment

*****  plant  *****
Version 8
User: Admin        Date:  9/16/02   Time:  5:29p
shrubbery.txt deleted

*****  plant  *****
Version 7
User: Admin        Date:  9/16/02   Time:  5:29p
shrubbery.txt added

*****  plant  *****
Version 6
User: Admin        Date:  9/16/02   Time:  5:25p
weed.txt destroyed

*****  plant  *****
Version 5
User: Admin        Date:  9/16/02   Time:  5:24p
weed.txt added

*****************  Version 8   *****************
User: Admin        Date:  9/16/02   Time:  5:24p
weed.txt destroyed

*****************  Version 7   *****************
User: Admin        Date:  9/16/02   Time:  5:12p
weed.txt added

*****  cereal.txt  *****
Version 2
User: Admin        Date:  9/16/02   Time:  5:08p
Checked in $/ccnetTestProject
Comment: makin changes to cereal - added froot loops

*****************  Version 6   *****************
User: Admin        Date:  9/16/02   Time:  5:06p
cereal.txt added

*****  tree.txt  *****
Version 3
User: Admin        Date:  9/16/02   Time:  5:01p
Checked in $/ccnetTestProject/plant
Comment: added fir to tree file, checked in recursively from project root

*****  plant  *****
Version 4
User: Admin        Date:  9/16/02   Time:  5:00p
vegetable.txt added

*****  jam.txt  *****
Version 2
User: Admin        Date:  9/16/02   Time:  2:44p
Checked in $/ccnetTestProject
Comment: added blueberry

*****  tree.txt  *****
Version 2
User: Admin        Date:  9/16/02   Time:  2:43p
Checked in $/ccnetTestProject/plant
Comment: added spruce (spruced it up, you might say)

*****************  Version 5   *****************
User: Admin        Date:  9/16/02   Time:  2:41p
$plant added

*****  plant  *****
Version 3
User: Admin        Date:  9/16/02   Time:  2:41p
tree.txt added

*****  plant  *****
Version 2
User: Admin        Date:  9/16/02   Time:  2:41p
flower.txt added

*****  plant  *****
Version 1
User: Admin        Date:  9/16/02   Time:  2:41p
Created
Comment: added subfolder

*****************  Version 4   *****************
User: Admin        Date:  9/16/02   Time:  2:40p
toast.txt added

*****************  Version 3   *****************
User: Admin        Date:  9/16/02   Time:  2:40p
juice.txt added

*****************  Version 2   *****************
User: Admin        Date:  9/16/02   Time:  2:40p
jam.txt added

*****************  Version 1   *****************
User: Admin        Date:  9/16/02   Time:  2:29p
Created
Comment: 

*****  level8  *****
Version 1
User: Mctwo        Date: 12/26/02   Time:  2:38p
Created
Comment: 
";
      }
    }
    #endregion 
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.