If you use NUnit, you can specify parameterized TextFixtures with all browsers you want at base test class:
namespace Tests
{
[TestFixture("*firefox")]
[TestFixture("*iexplore")]
public abstract class Test
{
private static string _browser;
protected Test()
{
}
protected Test(string browser)
{
SetBrowser(browser);
}
public static void SetBrowser(string browser)
{
_browser = browser;
}
[SetUp]
public virtual void Setup()
{
Selenium = new DefaultSelenium(localhost, 5555, _browser, "http://www.google.com/");
Selenium.Start();
}
[TearDown]
public virtual void TearDown()
{
Selenium.Stop();
}
}
}
And tests itself will be something like that:
namespace Tests
{
[TestFixture]
public class Test1 : Test
{
public Test1(string browser)
{
SetBrowser(browser);
}
[Test]
public void FirstTest()
{
...
}
}
}
2) You can specify browsers via PNunit. Cons: each test should be mentioned in test.conf file. Pros: all specified browsers will be run in parallel. Example of test.conf file with one test specified for two browsers:
<TestGroup>
<ParallelTests>
<ParallelTest>
<Name>Tests</Name>
<Tests>
<TestConf>
<Name>Test1FF</Name>
<Assembly>Test.dll</Assembly>
<TestToRun>Test.Tests.Test1</TestToRun>
<Machine>localhost:8080</Machine>
<TestParams>
<string>*firefox</string>
</TestParams>
</TestConf>
<TestConf>
<Name>Test1IE</Name>
<Assembly>Test.dll</Assembly>
<TestToRun>Test.Tests.Test1</TestToRun>
<Machine>localhost:8080</Machine>
<TestParams>
<string>*iexplore</string>
</TestParams>
</TestConf>
</Tests>
</ParallelTest>
</ParallelTests>
</TestGroup>
And base test class will be something like that:
using NUnit.Framework;
using PNUnit.Framework;
namespace Tests
{
[TestFixture]
public class Test
{
private string browser;
protected Test()
{
}
[SetUp]
public virtual void Setup()
{
browser = PNUnitServices.Get().GetTestParams();
Selenium = new DefaultSelenium(localhost, 5555, browser, "http://www.google.com/");
Selenium.Start();
}
[TearDown]
public virtual void TearDown()
{
Selenium.Stop();
}
}
}
3) You can specify browsers in app.config and change it via TeamCity. Didn't investigate this solution, so can't give you an example.
Hopes first two solutions will help.