Class: TestSuiteDelegate
- Inherits:
-
Object
- Object
- TestSuiteDelegate
- Defined in:
- motion/test_suite_delegate.rb
Instance Attribute Summary collapse
-
#window ⇒ Object
Returns the value of attribute window.
Instance Method Summary collapse
Instance Attribute Details
#window ⇒ Object
Returns the value of attribute window.
2 3 4 |
# File 'motion/test_suite_delegate.rb', line 2 def window @window end |
Instance Method Details
#application(application, didFinishLaunchingWithOptions: launchOptions) ⇒ Object
4 5 6 7 8 9 |
# File 'motion/test_suite_delegate.rb', line 4 def application(application, didFinishLaunchingWithOptions:launchOptions) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window.rootViewController = UIViewController.alloc.init @window.makeKeyAndVisible true end |