|
Hello, thank you for releasing v0.6!
Several notes regarding NUnit sample:
1. There is a mention that you moved to VS2010, but NUnit sample is in VS 2008 format;
2. The solution is not compliable right out-of-the-box – TestApiCore and TestApiWpf are referenced through GAC, not as through relative path;
3. References to FaultInjectionEngine DLLs are broken also;
4. After re-referencing TestApi DLLs and removing references to FaultInjectionEngine I got:
Error 1 Using the generic type 'System.Collections.Generic.ObjectComparer<T>' requires '1' type arguments
in ObjectComparisonTests.cs.
5. After commenting ObjectComparisonTests.cs the build was successful;
6. However, running VerifyWindowAppearance() from VisualVerificationTests entailed
VisualVerificationTests.VerifyWindowAppearance:
System.InvalidOperationException : No process is associated with this object.
Note – the SampleApp was launched;
7. The solution was to replace
string sampleAppPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase), "SampleApp.exe");
with
string sampleAppPath = @"SampleApp.exe";
Environment:
Win XP SP3/VS2008-2010/NUnit 2.5.0
Above comments are not a big deal as for me, but it may be confusing for newcomers.
Thank you again for the great tool!
Hello, thank you for releasing v0.6!
Several notes regarding NUnit sample:
<!-- [if !supportLists]-->1.
<!-- [endif]-->There is a mention that you moved to VS2010, but NUnit sample is in VS 2008 format;
<!-- [if !supportLists]-->2.
<!-- [endif]-->The solution is not compliable right out-of-the-box – TestApiCore and TestApiWpf are referenced through GAC, not as through relative path;
<!-- [if !supportLists]-->3.
<!-- [endif]-->References to FaultInjectionEngine DLLs are broken also;
<!-- [if !supportLists]-->4.
<!-- [endif]-->After re-referencing TestApi DLLs and removing references to FaultInjectionEngine I got:
Error
1
Using the generic type 'System.Collections.Generic.ObjectComparer<T>' requires '1' type arguments
in ObjectComparisonTests.cs.
<!-- [if !supportLists]-->5.
<!-- [endif]-->After commenting ObjectComparisonTests.cs the build was successful;
<!-- [if !supportLists]-->6.
<!-- [endif]-->However, running
VerifyWindowAppearance() from VisualVerificationTests entailed
VisualVerificationTests.VerifyWindowAppearance:
System.InvalidOperationException : No process is associated with this object.
Note – the SampleApp was launched.
<!-- [if !supportLists]-->7.
<!-- [endif]-->The solution was to replace
string sampleAppPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase), "SampleApp.exe");
with
string sampleAppPath =
@"SampleApp.exe";
Environment:
Win XP SP3/VS2008-2010/NUnit 2.5.0
Above comments are not a big deal as for me, but it may be confusing for newcomers.
Thank you again for the great tool!
|