mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fix test setup in attributedString module
Summary: changelog: [internal] Tests were not running because of `#ifdef ANDROID` directive. Tests had leaks and were using asserts instead of `EXPECT_EQ`. Reviewed By: JoshuaGross Differential Revision: D26168536 fbshipit-source-id: 453fe06a965c48f54d4bad6fe6653b6f45c39ccd
This commit is contained in:
committed by
Facebook GitHub Bot
parent
dce1863bf9
commit
67699ba9f2
@@ -5,9 +5,6 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <assert.h>
|
||||
#include <gtest/gtest.h>
|
||||
#include <react/renderer/attributedstring/ParagraphAttributes.h>
|
||||
#include <react/renderer/attributedstring/conversions.h>
|
||||
@@ -19,20 +16,18 @@ namespace react {
|
||||
#ifdef ANDROID
|
||||
|
||||
TEST(ParagraphAttributesTest, testToDynamic) {
|
||||
auto paragraphAttributes = ParagraphAttributes();
|
||||
auto paragraphAttributes = ParagraphAttributes{};
|
||||
paragraphAttributes.maximumNumberOfLines = 2;
|
||||
paragraphAttributes.adjustsFontSizeToFit = false;
|
||||
paragraphAttributes.ellipsizeMode = EllipsizeMode::Middle;
|
||||
|
||||
auto result = toDynamic(paragraphAttributes);
|
||||
assert(
|
||||
result["maximumNumberOfLines"] ==
|
||||
paragraphAttributes.maximumNumberOfLines);
|
||||
assert(
|
||||
result["adjustsFontSizeToFit"] ==
|
||||
paragraphAttributes.adjustsFontSizeToFit);
|
||||
assert(
|
||||
result["ellipsizeMode"] == toString(paragraphAttributes.ellipsizeMode));
|
||||
EXPECT_EQ(
|
||||
result["maximumNumberOfLines"], paragraphAttributes.maximumNumberOfLines);
|
||||
EXPECT_EQ(
|
||||
result["adjustsFontSizeToFit"], paragraphAttributes.adjustsFontSizeToFit);
|
||||
EXPECT_EQ(
|
||||
result["ellipsizeMode"], toString(paragraphAttributes.ellipsizeMode));
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user