Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: mojo/public/bindings/sample/sample_test.cc

Issue 68203005: Mojo: Make tests under mojo/public use our own run_all_unittests.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdio.h> 5 #include <stdio.h>
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "mojom/sample_service.h" 9 #include "mojom/sample_service.h"
10 10
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 foo->set_files(files); 169 foo->set_files(files);
170 170
171 mojo::Handle port = { 10 }; 171 mojo::Handle port = { 10 };
172 172
173 service->Frobinate(foo, true, port); 173 service->Frobinate(foo, true, port);
174 } 174 }
175 175
176 } // namespace sample 176 } // namespace sample
177 177
178 int main() { 178 int main() {
179 sample::Exercise(); 179 // TODO(vtl): Convert this to a gtest and use mojo_run_all_unittests.
180 // sample::Exercise();
180 return 0; 181 return 0;
181 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698