~singpolyma/biboumi

ref: 66887c225b63cecea62d17bcfae40cddef38c9d1 biboumi/tests/uuid.cpp -rw-r--r-- 314 bytes
66887c22 — Florent Le Coz Add a few tests 7 years ago
                                                                                
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);
}