109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
/*
|
|
ScopedPtrVect(Test) - holding and owning a collection of noncopyable objects
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
#include "lib/util.hpp"
|
|
|
|
#include "lib/scoped-ptrvect.hpp"
|
|
#include "testdummy.hpp"
|
|
|
|
#include <iostream>
|
|
//#include <map>
|
|
|
|
|
|
namespace lib {
|
|
namespace test {
|
|
|
|
using ::Test;
|
|
using util::isnil;
|
|
|
|
// using std::map;
|
|
using std::cout;
|
|
|
|
typedef ScopedPtrVect<Dummy> VectD;
|
|
|
|
|
|
/********************************************************************
|
|
* @test ScopedPtrVect manages the lifecycle of a number of objects.
|
|
*/
|
|
class ScopedPtrVect_test : public Test
|
|
{
|
|
|
|
virtual void
|
|
run (Arg)
|
|
{
|
|
simpleUsage();
|
|
// iterating();
|
|
// detaching();
|
|
}
|
|
|
|
|
|
|
|
void
|
|
simpleUsage()
|
|
{
|
|
ASSERT (0==checksum);
|
|
{
|
|
VectD holder;
|
|
ASSERT (isnil (holder));
|
|
ASSERT (0==checksum);
|
|
|
|
Dummy* ptr = new Dummy();
|
|
Dummy& ref = holder.manage (ptr);
|
|
ASSERT (!isnil (holder));
|
|
ASSERT (0!=checksum);
|
|
ASSERT (&ref==ptr);
|
|
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
ASSERT (3 == holder.size());
|
|
|
|
holder.clear();
|
|
ASSERT (0==checksum);
|
|
ASSERT (isnil (holder));
|
|
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
holder.manage (new Dummy);
|
|
ASSERT (9 == holder.size());
|
|
ASSERT (0!=checksum);
|
|
}
|
|
ASSERT (0==checksum);
|
|
}
|
|
|
|
};
|
|
|
|
LAUNCHER (ScopedPtrVect_test, "unit common");
|
|
|
|
|
|
}// namespace test
|
|
|
|
} // namespace lib
|
|
|