with Ranorex 2.x version I have run the testcases from console using NUnit (nunit-console /run: ...*.dll)
I have added the following lines of code:
using NUnit.Framework;
[TestFixture, RequiresSTA]
public class TestCase1
{
[TestFixtureSetUp]
public void Init()
{
}
[Test]
public void Test1()
{
}
[TestFixtureTearDown]
public void Dispose()
{
}
}
With Ranorex 3.1:
- Is it possible to add the *.rxtst here in [Test] and when using "nunit-console /run: ...*.dll", the Test Suite would be executed?
Hopefully someone get the idea what I am trying to do here.
Still learning the code

=> in a nutshell, I am trying to find a way to execute MyTest.rxtst from console to be run e.g. 5 times