blob: cb44cf59ef7b3bbf50f3b45f570e1150d693f3f8 [file] [log] [blame]
Keir Mierleda0bccb2020-01-17 13:51:35 -08001// Copyright 2020 The Pigweed Authors
Alexei Frolovc10c8122019-11-01 16:31:19 -07002//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
Wyatt Hepler1a960942019-11-26 14:13:38 -08004// use this file except in compliance with the License. You may obtain a copy of
5// the License at
Alexei Frolovc10c8122019-11-01 16:31:19 -07006//
7// https://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, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
Wyatt Hepler1a960942019-11-26 14:13:38 -080012// License for the specific language governing permissions and limitations under
13// the License.
Alexei Frolovc10c8122019-11-01 16:31:19 -070014
Alexei Frolovc10c8122019-11-01 16:31:19 -070015#include "pw_unit_test/framework.h"
Keir Mierleda0bccb2020-01-17 13:51:35 -080016#include "pw_unit_test/logging_event_handler.h"
Alexei Frolovc10c8122019-11-01 16:31:19 -070017
Alexei Frolovc10c8122019-11-01 16:31:19 -070018int main() {
Keir Mierleda0bccb2020-01-17 13:51:35 -080019 pw::unit_test::LoggingEventHandler handler;
Alexei Frolovc10c8122019-11-01 16:31:19 -070020 pw::unit_test::RegisterEventHandler(&handler);
21 return RUN_ALL_TESTS();
22}