From 4b9289cfb260f4bcecaf23a810584ef6ef8e8501 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 30 Mar 2011 22:33:41 +0000 Subject: Ok, string stuff is working much, much better, a load of new unit tests have been added, and I deleted a whole slew of stupid old tests that I don't need. --- src/tests/buffer.cpp | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/tests/buffer.cpp (limited to 'src/tests/buffer.cpp') diff --git a/src/tests/buffer.cpp b/src/tests/buffer.cpp deleted file mode 100644 index f3f6f41..0000000 --- a/src/tests/buffer.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2007-2011 Xagasoft, All rights reserved. - * - * This file is part of the libbu++ library and is released under the - * terms of the license contained in the file LICENSE. - */ - -#include "bu/membuf.h" -#include "bu/buffer.h" -#include "bu/file.h" - -using namespace Bu; - -int main( int argc, char *argv[] ) -{ - argc--,argv++; - if( argc == 0 ) - { - MemBuf mOut; - Buffer bOut( mOut, 10 ); - - for( int j = 0; j < 4; j++ ) - bOut.write("hi ", 3 ); - - printf("Preflush: \"%s\"\n", mOut.getString().getStr() ); - bOut.flush(); - - printf("Final: \"%s\"\n", mOut.getString().getStr() ); - } - else - { - File fIn( *argv, File::Read ); - Buffer bIn( fIn, 10 ); - - char buf[5]; - for( int j = 0; j < 5; j++ ) - { - buf[bIn.read( buf, 4 )] = '\0'; - printf("Four chars: \"%s\"\n", buf ); - } - } - - return 0; -} - -- cgit v1.2.3