Raise SIGKILL if cast_service doesn't Finalize() within timeout.
[chromium-blink-merge.git] / net / http / http_status_code_unittest.cc
blob962b89d3acf2e7e8769d2823a1fd77578caf92bb
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
3 // found in the LICENSE file.
5 #include "net/http/http_status_code.h"
7 #include "testing/gtest/include/gtest/gtest.h"
9 namespace net {
11 namespace {
13 TEST(HttpStatusCode, OK) {
14 EXPECT_EQ(200, HTTP_OK);
15 EXPECT_STREQ("OK", GetHttpReasonPhrase(HTTP_OK));
18 } // namespace
20 } // namespace net