Namespacyfied

This commit is contained in:
Leonetienne
2022-02-27 19:59:09 +01:00
parent 425d53dc90
commit 9bece91a1d
7 changed files with 235 additions and 207 deletions

View File

@@ -1,6 +1,8 @@
#include <BaseConversion.h>
#include "Catch2.h"
using namespace Leonetienne::GeneralUtility;
// Tests base 10 to 10
TEST_CASE(__FILE__"/Base10_to_10", "[BaseConversion][Base10_2_X]")
{

View File

@@ -1,6 +1,8 @@
#include <BaseConversion.h>
#include "Catch2.h"
using namespace Leonetienne::GeneralUtility;
// Tests base 10 to 10
TEST_CASE(__FILE__"/Base10_to_10", "[BaseConversion][BaseX_2_10]")
{

View File

@@ -1,6 +1,8 @@
#include <BaseConversion.h>
#include "Catch2.h"
using namespace Leonetienne::GeneralUtility;
// Tests base 10 to 10
TEST_CASE(__FILE__"/Base10_to_10", "[BaseConversion][BaseX_2_Y]")
{

View File

@@ -5,6 +5,8 @@
#include <time.h>
#include <stdexcept>
using namespace Leonetienne::GeneralUtility;
// Tests that basic division (base10) is working, with oracle values
TEST_CASE(__FILE__"/Base10", "[BaseConversion][DigitstringDivision]")
{

View File

@@ -3,6 +3,8 @@
#include <string>
#include <vector>
using namespace Leonetienne::GeneralUtility;
// Tests that the Ord method works with characters in a string
TEST_CASE(__FILE__"/WorksWithCharsInString", "[ContainerUtility][Ord]")
{