chromium/remoting/host/evaluate_capability_unittest.cc

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

#include "remoting/host/evaluate_capability.h"

#include "base/containers/contains.h"
#include "base/strings/string_util.h"
#include "remoting/host/base/switches.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace remoting {

namespace {

// New line character varies on different platform, so normalize the output
// here to reduce the complexity of comparing.
std::string NormalizeOutput(std::string output) {}

}  // namespace

// TODO(zijiehe): Find out the root cause of the unexpected failure of this test
// case. See http://crbug.com/750330.
TEST(EvaluateCapabilityTest, DISABLED_ShouldReturnCrashResult) {}

TEST(EvaluateCapabilityTest, ShouldReturnExitCodeAndOutput) {}

TEST(EvaluateCapabilityTest, ShouldReturnSuccessAndOutput) {}

}  // namespace remoting