chromium/components/translate/core/language_detection/chinese_script_classifier_test.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 "components/translate/core/language_detection/chinese_script_classifier.h"

#include <string>
#include <utility>
#include <vector>
#include "testing/gtest/include/gtest/gtest.h"

namespace translate {
namespace {

class ChineseScriptClassifierTest : public testing::Test {};

TEST_F(ChineseScriptClassifierTest, Simplified) {}

TEST_F(ChineseScriptClassifierTest, Traditional) {}

TEST_F(ChineseScriptClassifierTest, AmbiguousWithOnlyCharsValidForBothScripts) {}

TEST_F(ChineseScriptClassifierTest,
       AmbiguousWithMixedSimplifiedOnlyAndTraditionalOnly) {}

}  // namespace
}  // namespace translate