Skip to content
Snippets Groups Projects
Commit 44dc9263 authored by Eric Cano's avatar Eric Cano
Browse files

Ported commented out unit test Scheduler_delete_archive_request (left disabled).

Deleted tests for scheduler features that moved to the catalogue.
Factored out the common unit test initialization.
parent e83b7616
Branches
Tags
No related merge requests found
......@@ -29,6 +29,12 @@ namespace dataStructures {
//------------------------------------------------------------------------------
SecurityIdentity::SecurityIdentity() {}
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
SecurityIdentity::SecurityIdentity(const std::string& username, const std::string& host):
username(username), host(host) {}
//------------------------------------------------------------------------------
// operator==
//------------------------------------------------------------------------------
......
......@@ -34,6 +34,8 @@ namespace dataStructures {
struct SecurityIdentity {
SecurityIdentity();
SecurityIdentity(const std::string & username, const std::string & host);
bool operator==(const SecurityIdentity &rhs) const;
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment