blob: bada7c22decb6af13905c28305ba0a829270fdda [file] [log] [blame]
Justin TerAvest49966042019-07-15 09:53:01 -06001// Copyright 2019 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "codelab/codelab.h"
6
7#include <gtest/gtest.h>
8
9namespace codelab {
10
11TEST(CodelabTest, GivesFive) {
12 EXPECT_EQ(GiveFive(), 5);
13}
14
15// TODO(reader): Make this test pass!
16TEST(CodelabTest, DISABLED_Multiply) {
17 EXPECT_EQ(Multiply(6, 7), 42);
18}
19
20} // namespace codelab