|
|
|
@ -12,7 +12,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License. */
|
|
|
|
|
|
|
|
|
|
#include "to_string.h"
|
|
|
|
|
#include "paddle/fluid/string/to_string.h"
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
|
|
constexpr char kOutputString[] = "User Defined Output";
|
|
|
|
@ -26,14 +26,13 @@ std::ostream& operator<<(std::ostream& s, const UserDefinedClass& ins) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(to_string, normal) {
|
|
|
|
|
using namespace paddle::string;
|
|
|
|
|
using paddle::string::to_string;
|
|
|
|
|
ASSERT_EQ("10", to_string(10));
|
|
|
|
|
ASSERT_EQ("abc", to_string("abc"));
|
|
|
|
|
ASSERT_EQ("1.2", to_string(1.2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(to_string, user_defined) {
|
|
|
|
|
using namespace paddle::string;
|
|
|
|
|
UserDefinedClass instance;
|
|
|
|
|
ASSERT_EQ(kOutputString, to_string(instance));
|
|
|
|
|
ASSERT_EQ(kOutputString, paddle::string::to_string(instance));
|
|
|
|
|
}
|
|
|
|
|