chromium/chrome/test/chromedriver/chrome/browser_info_unittest.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/test/chromedriver/chrome/browser_info.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace {

void AssertParseBrowserInfoFails(const std::string& data) {}

}  // namespace

TEST(ParseBrowserInfo, InvalidJSON) {}

TEST(ParseBrowserInfo, NonDict) {}

TEST(ParseBrowserInfo, NoBrowserKey) {}

TEST(ParseBrowserInfo, BlinkVersionContainsSvnRevision) {}

TEST(ParseBrowserInfo, BlinkVersionContainsGitHash) {}

TEST(ParseBrowserString, KitKatWebView) {}

TEST(ParseBrowserString, LollipopWebView) {}

TEST(ParseBrowserString, AndroidChrome) {}

TEST(ParseBrowserString, DesktopChrome) {}

TEST(ParseBrowserString, HeadlessChrome) {}

TEST(ParseBlinkVersionString, GitHash) {}

TEST(ParseBlinkVersionString, SvnRevision) {}

TEST(IsGitHash, GitHash) {}

TEST(IsGitHash, ShortGitHash) {}

TEST(IsGitHash, GitHashWithUpperCaseCharacters) {}

TEST(IsGitHash, SvnRevision) {}

TEST(FillFromBrowserVersionResponse, Chrome) {}

TEST(FillFromBrowserVersionResponse, HeadlessChrome) {}