Hi,
The project type of "Test Project" is supplied by Visual Studio full editions. As a workaround, assuming you can write C# code in Visual Studio you can write NUnit tests instead of MStest tests.
You can download NUnit from here:
http://www.nunit.org/
Assuming you're going by the quick start examples, which are written in MStest, you need to replace the [TestClass] attribute with [TestFixture] and [TestMethod] with [Test].
In order to execute the tests, you need to run it from command line (unless you've got
TestDriven.Net installed or other runner). For executing nunit test with Isolator in command line:
TMockRunner.exe nunit-console.exe MyTestsAssembly.dll
By the way, if you want to have a little easier start, you can download Visual Studio for evaluation.
Good luck,
Elisha,
Typemock Support