Browse Source

[4313] Added parameter descriptions in two context unit-tests functions.

Tomek Mrugalski 9 years ago
parent
commit
a4e35f06ff
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/lib/eval/tests/context_unittest.cc

+ 6 - 0
src/lib/eval/tests/context_unittest.cc

@@ -73,6 +73,9 @@ public:
 
     /// @brief checks if the given token is an option with the expected code
     /// and representation type
+    /// @param token token to be checked
+    /// @param expected_code expected option code
+    /// @param expected_repr expected representation (text, hex, exist)
     void checkTokenOption(const TokenPtr& token,
                           uint16_t expected_code,
                           TokenOption::RepresentationType expected_repr) {
@@ -87,6 +90,9 @@ public:
 
     /// @brief check if the given token is relay4 with the expected code
     /// and representation type
+    /// @param token token to be checked
+    /// @param expected_code expected option code
+    /// @param expected_repr expected representation (text, hex, exist)
     void checkTokenRelay4(const TokenPtr& token,
                           uint16_t expected_code,
                           TokenOption::RepresentationType expected_repr) {