#include "Exception/ValueExistsException.hpp"
#include "TestFramework.hpp"

BOOST_AUTO_TEST_CASE( Create )
{
  try {
    throw ValueExistsException();
  }
  catch (ValueExistsException & e) {
    BOOST_REQUIRE_THROW(e.raise(), ValueExistsException);
  }
}
