mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1490ab12ef
Summary:
Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs.
find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$
replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree.
Reviewed By: TheSavior, yungsters
Differential Revision: D7007050
fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
84 lines
2.3 KiB
JavaScript
84 lines
2.3 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule TestIdTestModule
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Image = require('Image');
|
|
var React = require('React');
|
|
var StyleSheet = require('StyleSheet');
|
|
var Switch = require('Switch');
|
|
var Text = require('Text');
|
|
var TextInput = require('TextInput');
|
|
var TouchableBounce = require('TouchableBounce');
|
|
var TouchableHighlight = require('TouchableHighlight');
|
|
var TouchableOpacity = require('TouchableOpacity');
|
|
var TouchableWithoutFeedback = require('TouchableWithoutFeedback');
|
|
var View = require('View');
|
|
|
|
/**
|
|
* All the views implemented on Android, each with the testID property set.
|
|
* We test that:
|
|
* - The app renders fine
|
|
* - The testID property is passed to the native views
|
|
*/
|
|
class TestIdTestApp extends React.Component {
|
|
render() {
|
|
return (
|
|
<View>
|
|
|
|
<Image
|
|
testID="Image"
|
|
source={{uri: 'data:image/gif;base64,' +
|
|
'R0lGODdhMAAwAPAAAAAAAP///ywAAAAAMAAwAAAC8IyPqcvt3wCcDkiLc7C0qwyGHhSWpjQu5yqmCYsapy' +
|
|
'uvUUlvONmOZtfzgFzByTB10QgxOR0TqBQejhRNzOfkVJ+5YiUqrXF5Y5lKh/DeuNcP5yLWGsEbtLiOSpa/' +
|
|
'TPg7JpJHxyendzWTBfX0cxOnKPjgBzi4diinWGdkF8kjdfnycQZXZeYGejmJlZeGl9i2icVqaNVailT6F5' +
|
|
'iJ90m6mvuTS4OK05M0vDk0Q4XUtwvKOzrcd3iq9uisF81M1OIcR7lEewwcLp7tuNNkM3uNna3F2JQFo97V' +
|
|
'riy/Xl4/f1cf5VWzXyym7PHhhx4dbgYKAAA7'}}
|
|
style={styles.base} />
|
|
|
|
<Text testID="Text">text</Text>
|
|
|
|
<TextInput testID="TextInput" value="Text input" />
|
|
|
|
<TouchableBounce testID="TouchableBounce">
|
|
<Text>TouchableBounce</Text>
|
|
</TouchableBounce>
|
|
|
|
<TouchableHighlight testID="TouchableHighlight">
|
|
<Text>TouchableHighlight</Text>
|
|
</TouchableHighlight>
|
|
|
|
<TouchableOpacity testID="TouchableOpacity">
|
|
<Text>TouchableOpacity</Text>
|
|
</TouchableOpacity>
|
|
|
|
<TouchableWithoutFeedback testID="TouchableWithoutFeedback">
|
|
<View>
|
|
<Text>TouchableWithoutFeedback</Text>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
|
|
<View testID="View" />
|
|
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
base: {
|
|
width: 150,
|
|
height: 50,
|
|
},
|
|
});
|
|
|
|
module.exports = {
|
|
TestIdTestApp: TestIdTestApp,
|
|
};
|