Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Generator / Generators / Controller / Templates / Test.cs
blob4e953782ba25fdfd96fc24eaa816003d349e1155
1 using NUnit.Framework;
3 namespace <%= TestsNamespace %> {
4 /// <summary>
5 /// <%= ClassName %>Controller test case
6 /// </summary>
7 [TestFixture]
8 public class <%= ClassName %>ControllerTest : ControllerTestCase
10 <% for action in Actions: %>
11 [Test]
12 public void <%= action %>()
14 DoGet("<%= ClassName.ToLower() %>/<%= action.ToLower() %>.<%= Extension %>");
15 AssertSuccess();
17 // Assert....
20 <% end %>