react-native-navigation的迁移库

RNNRootViewControllerTest.m 523B

12345678910111213141516171819202122232425262728
  1. //
  2. // RNNRootViewControllerTest.m
  3. // ReactNativeNavigation
  4. //
  5. // Created by Daniel Zlotin on 07/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import <XCTest/XCTest.h>
  9. #import "RNNRootViewController.h"
  10. @interface RNNRootViewControllerTest : XCTestCase
  11. @end
  12. @implementation RNNRootViewControllerTest
  13. - (void)sendsEventOnAppear {
  14. NSDictionary* params = @{};
  15. RNNRootViewController* uut = [[RNNRootViewController alloc] initWithNode:[RNNLayoutNode create:params]];
  16. [uut viewDidAppear:true];
  17. }
  18. @end