CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
UnitTestAppDelegate.cs
Go to the documentation of this file.
1using System;
2using System.Linq;
3using System.Collections.Generic;
4
5using Foundation;
6using UIKit;
7using MonoTouch.NUnit.UI;
8
9namespace Csla.Ios.Test
10{
11 // The UIApplicationDelegate for the application. This class is responsible for launching the
12 // User Interface of the application, as well as listening (and optionally responding) to
13 // application events from iOS.
14 [Register("UnitTestAppDelegate")]
15 public partial class UnitTestAppDelegate : UIApplicationDelegate
16 {
17 // class-level declarations
18 UIWindow window;
19 TouchRunner runner;
20
21 //
22 // This method is invoked when the application has loaded and is ready to run. In this
23 // method you should instantiate the window, load the UI into it and then make the window
24 // visible.
25 //
26 // You have 17 seconds to return from this method, or iOS will terminate your application.
27 //
28 public override bool FinishedLaunching(UIApplication app, NSDictionary options)
29 {
30 // create a new window instance based on the screen size
31 window = new UIWindow(UIScreen.MainScreen.Bounds);
32 runner = new TouchRunner(window);
33
34 // register every tests included in the main application/assembly
35 runner.Add(System.Reflection.Assembly.GetExecutingAssembly());
36
37 window.RootViewController = new UINavigationController(runner.GetViewController());
38
39 // make the window visible
40 window.MakeKeyAndVisible();
41
42 return true;
43 }
44 }
45}
46
override bool FinishedLaunching(UIApplication app, NSDictionary options)