TestComplete integration into TeamCity
We use TestComplete for GUI testing in our work. For faster tests execution we use several PC’s with TestComplete. A unique part of full task list runs on each PC.
But how can we split task for maximum workload of PC? How to combine results without manual work?
It also would be good to [...]
Posts Tagged ‘Continuous Integration’
TestComplete integration into TeamCity
Posted in Programming, tagged C# 3.5, Continuous Integration, GUI Tests, TeamCity, TestComplete, WCF, Web Services on April 23, 2009 | 1 Comment »
Writing Sourcecontrol Plugin for CruiseControl.Net
Posted in Programming, tagged Continuous Integration, CruiseControl.Net, Sourcecontrol Plugin on December 4, 2008 | Leave a Comment »
CruiseControl.Net is a port of famous CruiseControl – Continuous Intagration Server. In our firm we use remote Visual Source Safe Server via VSSConnect. And I write Sourcecontrol Plugin CruiseControl.Net. This plugin should only “Get Latest Version” After some googling I found interface ISourceControl.
Here result plugin code:
using System;
using System.Collections.Generic;
using System.Text;
using ThoughtWorks.CruiseControl.Core;
using ThoughtWorks.CruiseControl.Core.Util;
using Exortech.NetReflector;
using System.Diagnostics;
using [...]