mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-06 22:38:37 +08:00
<Replace this line with a title. Use 1 line only, 67 chars or less>
Reviewed By: matryoshcow Differential Revision: D3432084 fbshipit-source-id: fa94b1aca40c931cc273a5561adf37f458aaa0ff
This commit is contained in:
committed by
Facebook Github Bot 6
parent
503fdc6699
commit
58881fc57f
@@ -0,0 +1,41 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package com.facebook.react.tests;
|
||||
|
||||
import com.facebook.react.testing.ReactAppInstrumentationTestCase;
|
||||
import com.facebook.react.testing.ReactInstanceSpecForTest;
|
||||
import com.facebook.react.testing.StringRecordingModule;
|
||||
|
||||
/**
|
||||
* Simple test to verify that layout events (onLayout) propagate to JS from native.
|
||||
*/
|
||||
public class LayoutEventsTestCase extends ReactAppInstrumentationTestCase {
|
||||
|
||||
private StringRecordingModule mStringRecordingModule;
|
||||
|
||||
@Override
|
||||
protected String getReactApplicationKeyUnderTest() {
|
||||
return "LayoutEventsTestApp";
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a UI in JS and verifies the onLayout handler is called.
|
||||
*/
|
||||
public void testOnLayoutCalled() {
|
||||
assertEquals(1, mStringRecordingModule.getCalls().size());
|
||||
assertEquals("10,10-100x100", mStringRecordingModule.getCalls().get(0));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ReactInstanceSpecForTest createReactInstanceSpecForTest() {
|
||||
mStringRecordingModule = new StringRecordingModule();
|
||||
return super.createReactInstanceSpecForTest()
|
||||
.addNativeModule(mStringRecordingModule);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user