Skip to content

Commit

Permalink
Add TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 4, 2024
1 parent 5e5159f commit 669ce63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ namespace UEST
} False;

template<typename T>
// TODO: Add requires
struct EqualTo final : IMatcher<T>
{
const T& Expected;
Expand All @@ -111,6 +112,7 @@ namespace UEST
};

template<typename T>
// TODO: Add requires
struct LessThan final : IMatcher<T>
{
const T& Expected;
Expand All @@ -132,6 +134,7 @@ namespace UEST
};

template<typename T>
// TODO: Add requires
struct LessThanOrEqual final : IMatcher<T>
{
const T& Expected;
Expand All @@ -153,6 +156,7 @@ namespace UEST
};

template<typename T>
// TODO: Add requires
struct GreaterThan final : IMatcher<T>
{
const T& Expected;
Expand All @@ -174,6 +178,7 @@ namespace UEST
};

template<typename T>
// TODO: Add requires
struct GreaterThanOrEqual final : IMatcher<T>
{
const T& Expected;
Expand All @@ -194,7 +199,9 @@ namespace UEST
}
};

// TODO: Can we get rid of <T> using concepts?
template<typename T, typename M>
// TODO: Add requires
struct Not : IMatcher<T>
{
M Nested;
Expand Down

0 comments on commit 669ce63

Please sign in to comment.