Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (C) 2013 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 | |
| 15 #ifndef I18N_ADDRESSINPUT_TEST_STORAGE_TEST_RUNNER_H_ | |
| 16 #define I18N_ADDRESSINPUT_TEST_STORAGE_TEST_RUNNER_H_ | |
| 17 | |
| 18 #include <libaddressinput/storage.h> | |
| 19 #include <libaddressinput/util/basictypes.h> | |
| 20 #include <libaddressinput/util/scoped_ptr.h> | |
| 21 | |
| 22 #include <string> | |
| 23 | |
| 24 namespace i18n { | |
| 25 namespace addressinput { | |
| 26 | |
| 27 class StorageTestRunner { | |
| 28 public: | |
| 29 StorageTestRunner(Storage* storage); | |
|
please use gerrit instead
2013/12/20 02:04:40
explicit
Evan Stade
2013/12/20 03:21:56
Done.
| |
| 30 | |
| 31 void RunAllTests(); | |
| 32 | |
| 33 private: | |
| 34 void ClearValues(); | |
| 35 scoped_ptr<Storage::Callback> BuildCallback(); | |
| 36 void OnDataReady(bool success, | |
| 37 const std::string& key, | |
| 38 const std::string& data); | |
| 39 | |
| 40 // Test suite. | |
| 41 void GetWithoutPutReturnsEmptyData(); | |
| 42 void GetReturnsWhatWasPut(); | |
| 43 void SecondPutOverwritesData(); | |
| 44 | |
| 45 Storage* storage_; // weak | |
| 46 bool success_; | |
| 47 std::string key_; | |
| 48 std::string data_; | |
| 49 | |
| 50 DISALLOW_COPY_AND_ASSIGN(StorageTestRunner); | |
| 51 }; | |
| 52 | |
| 53 } // namespace addressinput | |
| 54 } // namespace i18n | |
| 55 | |
| 56 #endif // I18N_ADDRESSINPUT_TEST_STORAGE_TEST_RUNNER_H_ | |
| OLD | NEW |