// Copyright 2014 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #include #include "packager/status_test_util.h" namespace shaka { namespace media { TEST(StatusTestUtil, ExpectOkSuccess) { EXPECT_OK(Status::OK); } TEST(StatusTestUtil, AssertOkSuccess) { ASSERT_OK(Status::OK); } TEST(StatusTestUtil, ExpectOkFailure) { Status status(error::UNKNOWN, "Status Unknown"); EXPECT_NONFATAL_FAILURE(EXPECT_OK(status), "Status Unknown"); } TEST(StatusTestUtil, AssertOkFailure) { EXPECT_FATAL_FAILURE(ASSERT_OK(Status(error::UNKNOWN, "Status Unknown")), "Status Unknown"); } } // namespace media } // namespace shaka