Feeds:
Posts
Comments

Posts Tagged ‘Continuous Integration’

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 [...]

Read Full Post »

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 [...]

Read Full Post »