diff options
Diffstat (limited to 'product/support/unit/Helpers.cs')
| -rw-r--r-- | product/support/unit/Helpers.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/product/support/unit/Helpers.cs b/product/support/unit/Helpers.cs new file mode 100644 index 0000000..ca7a8b4 --- /dev/null +++ b/product/support/unit/Helpers.cs @@ -0,0 +1,12 @@ +using Rhino.Mocks;
+
+namespace unit
+{
+ public class Helpers
+ {
+ static public T a<T>() where T : class
+ {
+ return MockRepository.GenerateMock<T>();
+ }
+ }
+}
\ No newline at end of file |
