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 explicit StorageTestRunner(Storage* storage); |
| 30 |
| 31 // Runs all the tests from the standard test suite. |
| 32 void RunAllTests(); |
| 33 |
| 34 private: |
| 35 void ClearValues(); |
| 36 scoped_ptr<Storage::Callback> BuildCallback(); |
| 37 void OnDataReady(bool success, |
| 38 const std::string& key, |
| 39 const std::string& data); |
| 40 |
| 41 // Test suite. |
| 42 void GetWithoutPutReturnsEmptyData(); |
| 43 void GetReturnsWhatWasPut(); |
| 44 void SecondPutOverwritesData(); |
| 45 |
| 46 Storage* storage_; // weak |
| 47 bool success_; |
| 48 std::string key_; |
| 49 std::string data_; |
| 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(StorageTestRunner); |
| 52 }; |
| 53 |
| 54 } // namespace addressinput |
| 55 } // namespace i18n |
| 56 |
| 57 #endif // I18N_ADDRESSINPUT_TEST_STORAGE_TEST_RUNNER_H_ |
OLD | NEW |