diff options
author | Povilas Kanapickas <povilas.kanapickas@gmail.com> | 2010-10-18 15:52:09 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-10-18 15:52:09 +0100 |
commit | 3eb979df547419645bb3c824f1dc4a5fdc8d0250 (patch) | |
tree | c23e118a69931c1bb8a0c8397f3753256e31c17a /cosv | |
parent | b09ac477d2ba4ceed63072d31a957cbf783cfcf2 (diff) |
remove non-compiled code
Diffstat (limited to 'cosv')
-rw-r--r-- | cosv/source/unittest/string_ut.cxx | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/cosv/source/unittest/string_ut.cxx b/cosv/source/unittest/string_ut.cxx index 292005881f18..fe3bbb8aa118 100644 --- a/cosv/source/unittest/string_ut.cxx +++ b/cosv/source/unittest/string_ut.cxx @@ -73,70 +73,4 @@ classtest_String( csv::SimpleString & rSimpleString ) return ret; } - - - -#if 0 -FUT_DECL( SimpleString, Ctor_Def ); -FUT_DECL( SimpleString, Seek ); -FUT_DECL( SimpleString, SeekBack ); -FUT_DECL( SimpleString, SeekRelative ); - - - -FUT_DECL( SimpleString, Read ) -{ - bool ret = true; - - rSimpleString.SeekBack(0); - uintt nSourceSize = rSimpleString.Position(); - rSimpleString.Seek(0); - - char * pBuf = new char[nSourceSize+1]; - uintt nCount = rSimpleString.Read(pBuf,nSourceSize); - - UT_CHECK( Read, nCount == nSourceSize ); - - return ret; -} - -FUT_DECL( SimpleString, Write ) -{ - bool ret = true; - - - - return ret; -} - -FUT_DECL( SimpleString, Seek ) -{ - bool ret = true; - - - - return ret; -} - -FUT_DECL( SimpleString, SeekBack ) -{ - bool ret = true; - - - - return ret; -} - -FUT_DECL( SimpleString, SeekRelative ) -{ - bool ret = true; - - - - return ret; -} - -#endif - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |