summaryrefslogtreecommitdiff
path: root/tests/uuid.cpp
blob: 12c6c32adbeb401d59bb097fd57165afe03dd2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "catch.hpp"

#include <xmpp/xmpp_component.hpp>

TEST_CASE("id generation")
{
  const std::string first_uuid = XmppComponent::next_id();
  const std::string second_uuid = XmppComponent::next_id();

  CHECK(first_uuid.size() == 36);
  CHECK(second_uuid.size() == 36);
  CHECK(first_uuid != second_uuid);
}