src/core/test/hash-test-suite.cc
changeset 11414 8bdce024e490
parent 10553 8c347165bb56
equal deleted inserted replaced
11413:eec025ea99c5 11414:8bdce024e490
    43 private:
    43 private:
    44   void Check ( const std::string hashName, const int bits, const uint64_t hash);
    44   void Check ( const std::string hashName, const int bits, const uint64_t hash);
    45   virtual void DoRun (void);
    45   virtual void DoRun (void);
    46 };  // class HashTestCase
    46 };  // class HashTestCase
    47 
    47 
    48 HashTestCase::HashTestCase (const std:: string name)
    48 HashTestCase::HashTestCase (const std::string name)
    49   : TestCase (name),
    49   : TestCase (name),
    50     key ("The quick brown fox jumped over the lazy dogs.")
    50     key ("The quick brown fox jumped over the lazy dogs.")
    51 {
    51 {
    52 }
    52 }
    53 
    53