Skip to content

Commit

Permalink
created initial test case for globus api
Browse files Browse the repository at this point in the history
  • Loading branch information
nedvedba committed Nov 19, 2024
1 parent ff71ac7 commit d4bc79b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/server/tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
foreach(PROG
test_AuthMap
test_AuthenticationManager
test_GlobusAPI
)

file(GLOB ${PROG}_SOURCES ${PROG}*.cpp)
Expand Down
28 changes: 28 additions & 0 deletions core/server/tests/unit/test_GlobusAPI.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#define BOOST_TEST_MAIN

#define BOOST_TEST_MODULE globusapi

// Local includes

// Third party includes
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp>
#include <boost/test/unit_test.hpp>

// Standard includes
#include <map>
#include <memory>

using namespace SDMS::Core;

BOOST_AUTO_TEST_SUITE(GlobusAPITest)

BOOST_AUTO_TEST_CASE(testing_GlobusAPIPost) {
BOOST_TEST(true);
}

BOOST_AUTO_TEST_CASE(testing_GlobusAPIGet) {
BOOST_TEST(true);
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit d4bc79b

Please sign in to comment.