bufferedconnectionwritertest.cpp
来自「一个语言识别引擎」· C++ 代码 · 共 42 行
CPP
42 行
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
/*
* Copyright (C) 2006 Paul Fitzpatrick
* CopyPolicy: Released under the terms of the GNU GPL v2.0.
*
*/
#include <yarp/BufferedConnectionWriter.h>
#include <yarp/StringOutputStream.h>
#include "TestList.h"
using namespace yarp;
class BufferedConnectionWriterTest : public UnitTest {
public:
virtual String getName() { return "BufferedConnectionWriterTest"; }
void testWrite() {
report(0,"testing writing...");
StringOutputStream sos;
BufferedConnectionWriter bbr;
bbr.reset(true);
bbr.appendLine("Hello");
bbr.appendLine("Greetings");
bbr.write(sos);
checkEqual(sos.toString(),"Hello\r\nGreetings\r\n","two line writes");
}
virtual void runTests() {
testWrite();
}
};
static BufferedConnectionWriterTest theBufferedConnectionWriterTest;
UnitTest& getBufferedConnectionWriterTest() {
return theBufferedConnectionWriterTest;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?