Summary: Providing model for the android function TextUtils.isEmpty(). For now, this always returns false assuming that the given value is not null. Reviewed By: jvillard Differential Revision: D26779619 fbshipit-source-id: 3d8e26813master
parent
e739099a40
commit
f719294d41
@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
import android.text.TextUtils;
|
||||
|
||||
public class TextUtilsExample {
|
||||
|
||||
public void FP_testTextUtilsIsEmptyOk(String s) {
|
||||
if (TextUtils.isEmpty(s)) {
|
||||
Object o = null;
|
||||
o.toString();
|
||||
}
|
||||
}
|
||||
|
||||
public void testTextUtilsIsEmptyBad() {
|
||||
String s = "#@%^&%";
|
||||
if (!TextUtils.isEmpty(s)) {
|
||||
Object o = null;
|
||||
o.toString();
|
||||
}
|
||||
}
|
||||
|
||||
public void testTextUtilsIsEmptyEmptyStrBad() {
|
||||
if (TextUtils.isEmpty("")) {
|
||||
Object o = null;
|
||||
o.toString();
|
||||
}
|
||||
}
|
||||
|
||||
public void testTextUtilsIsEmptyNullBad() {
|
||||
String s = null;
|
||||
if (TextUtils.isEmpty(s)) {
|
||||
Object o = null;
|
||||
o.toString();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue