Justin TerAvest | 4996604 | 2019-07-15 09:53:01 -0600 | [diff] [blame^] | 1 | // 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 | |
| 9 | namespace codelab { |
| 10 | |
| 11 | TEST(CodelabTest, GivesFive) { |
| 12 | EXPECT_EQ(GiveFive(), 5); |
| 13 | } |
| 14 | |
| 15 | // TODO(reader): Make this test pass! |
| 16 | TEST(CodelabTest, DISABLED_Multiply) { |
| 17 | EXPECT_EQ(Multiply(6, 7), 42); |
| 18 | } |
| 19 | |
| 20 | } // namespace codelab |