[complement-svn] SF.net SVN: complement: [1784] trunk/complement/explore/lib/net/ut
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-10-31 18:34:47
|
Revision: 1784 http://complement.svn.sourceforge.net/complement/?rev=1784&view=rev Author: complement Date: 2007-10-31 11:34:44 -0700 (Wed, 31 Oct 2007) Log Message: ----------- fix file names Modified Paths: -------------- trunk/complement/explore/lib/net/ut/Makefile.inc trunk/complement/explore/lib/net/ut/unit_test.cc Added Paths: ----------- trunk/complement/explore/lib/net/ut/http_test_suite.cc trunk/complement/explore/lib/net/ut/http_test_suite.h Removed Paths: ------------- trunk/complement/explore/lib/net/ut/intercessor_test_suite.cc trunk/complement/explore/lib/net/ut/intercessor_test_suite.h Modified: trunk/complement/explore/lib/net/ut/Makefile.inc =================================================================== --- trunk/complement/explore/lib/net/ut/Makefile.inc 2007-10-31 18:31:49 UTC (rev 1783) +++ trunk/complement/explore/lib/net/ut/Makefile.inc 2007-10-31 18:34:44 UTC (rev 1784) @@ -3,4 +3,4 @@ PRGNAME = ut_http SRC_CC = unit_test.cc \ http_test.cc \ - intercessor_test_suite.cc + http_test_suite.cc Copied: trunk/complement/explore/lib/net/ut/http_test_suite.cc (from rev 1783, trunk/complement/explore/lib/net/ut/intercessor_test_suite.cc) =================================================================== --- trunk/complement/explore/lib/net/ut/http_test_suite.cc (rev 0) +++ trunk/complement/explore/lib/net/ut/http_test_suite.cc 2007-10-31 18:34:44 UTC (rev 1784) @@ -0,0 +1,29 @@ +// -*- C++ -*- Time-stamp: <07/10/22 18:19:19 yeti> + +/* + * + * Copyright (c) 2007 + * Petr Ovtchenkov + * + * Licensed under the Academic Free License version 3.0 + * + */ + +#include "http_test_suite.h" +#include "http_test.h" + +int EXAM_IMPL(http_test_suite) +{ + exam::test_suite t( "http test" ); + + http_test test; + + t.add( &http_test::header_io, test, "" ); + t.add( &http_test::header_sp, test, "" ); + t.add( &http_test::command, test, "" ); + t.add( &http_test::base_response, test, "" ); + t.add( &http_test::request, test, "" ); + t.add( &http_test::response, test, "" ); + + return t.girdle(); +} Copied: trunk/complement/explore/lib/net/ut/http_test_suite.h (from rev 1783, trunk/complement/explore/lib/net/ut/intercessor_test_suite.h) =================================================================== --- trunk/complement/explore/lib/net/ut/http_test_suite.h (rev 0) +++ trunk/complement/explore/lib/net/ut/http_test_suite.h 2007-10-31 18:34:44 UTC (rev 1784) @@ -0,0 +1,19 @@ +// -*- C++ -*- Time-stamp: <07/10/19 18:38:53 yeti> + +/* + * + * Copyright (c) 2002, 2003, 2005-2007 + * Petr Ovtchenkov + * + * Licensed under the Academic Free License version 3.0 + * + */ + +#ifndef __intercessor_test_suite_h +#define __intercessor_test_suite_h + +#include <exam/suite.h> + +int EXAM_DECL(http_test_suite); + +#endif // __intercessor_test_suite_h Deleted: trunk/complement/explore/lib/net/ut/intercessor_test_suite.cc =================================================================== --- trunk/complement/explore/lib/net/ut/intercessor_test_suite.cc 2007-10-31 18:31:49 UTC (rev 1783) +++ trunk/complement/explore/lib/net/ut/intercessor_test_suite.cc 2007-10-31 18:34:44 UTC (rev 1784) @@ -1,29 +0,0 @@ -// -*- C++ -*- Time-stamp: <07/10/22 18:19:19 yeti> - -/* - * - * Copyright (c) 2007 - * Petr Ovtchenkov - * - * Licensed under the Academic Free License version 3.0 - * - */ - -#include "intercessor_test_suite.h" -#include "http_test.h" - -int EXAM_IMPL(http_test_suite) -{ - exam::test_suite t( "http test" ); - - http_test test; - - t.add( &http_test::header_io, test, "" ); - t.add( &http_test::header_sp, test, "" ); - t.add( &http_test::command, test, "" ); - t.add( &http_test::base_response, test, "" ); - t.add( &http_test::request, test, "" ); - t.add( &http_test::response, test, "" ); - - return t.girdle(); -} Deleted: trunk/complement/explore/lib/net/ut/intercessor_test_suite.h =================================================================== --- trunk/complement/explore/lib/net/ut/intercessor_test_suite.h 2007-10-31 18:31:49 UTC (rev 1783) +++ trunk/complement/explore/lib/net/ut/intercessor_test_suite.h 2007-10-31 18:34:44 UTC (rev 1784) @@ -1,19 +0,0 @@ -// -*- C++ -*- Time-stamp: <07/10/19 18:38:53 yeti> - -/* - * - * Copyright (c) 2002, 2003, 2005-2007 - * Petr Ovtchenkov - * - * Licensed under the Academic Free License version 3.0 - * - */ - -#ifndef __intercessor_test_suite_h -#define __intercessor_test_suite_h - -#include <exam/suite.h> - -int EXAM_DECL(http_test_suite); - -#endif // __intercessor_test_suite_h Modified: trunk/complement/explore/lib/net/ut/unit_test.cc =================================================================== --- trunk/complement/explore/lib/net/ut/unit_test.cc 2007-10-31 18:31:49 UTC (rev 1783) +++ trunk/complement/explore/lib/net/ut/unit_test.cc 2007-10-31 18:34:44 UTC (rev 1784) @@ -9,7 +9,7 @@ * */ -#include "intercessor_test_suite.h" +#include "http_test_suite.h" int main( int, char ** ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |