Skip to content

Commit

Permalink
fix add Random Generator and Array test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
Svvmy committed Jan 14, 2024
1 parent b9be569 commit 7f45948
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion utils/tst/RandomGeneratorTestSuite.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#ifndef GMDS_RANDOM_GENERATOR_TESTSUITE_H
# define GMDS_RANDOM_GENERATOR_TESTSUITE_H

# include "gmds/utils/RandomGenerator.h"
# include <gmds/utils/RandomGenerator.h>
# include "gtest/gtest.h"
# include <unit_test_config.h>

using namespace gmds;

TEST(RandomGeneratorTestSuite, ValueInRange)
{
gmds::RandomGenerator randomGen;
Expand Down
4 changes: 2 additions & 2 deletions utils/tst/main_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
/*----------------------------------------------------------------------------*/
// Files containing the different test suites to launch
#include "ArrayTestSuite.h"
// #include "AssertTestSuite.h"
#include "AssertTestSuite.h"
#include "BitVectorTestSuite.h"
// #include "CommonTypesTestSuite.h"
// #include "LogTestSuite.h"
// #include "OrientedGraphTestSuite.h"
#include "ParamTestSuite.h"
// #include "RandomGeneratorTestSuite.h"
#include "RandomGeneratorTestSuite.h"
#include "UtilsTestSuite.h"
// #include "VariableManagerTestSuite.h"
/*----------------------------------------------------------------------------*/
Expand Down

0 comments on commit 7f45948

Please sign in to comment.