chromium/chrome/tools/convert_dict/aff_reader_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// When understanding these test cases, the nuspell docs are a useful reference:
//   https://github.com/nuspell/nuspell/wiki/Affix-File-Format

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

#include "base/files/file_path.h"
#include "base/path_service.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/tools/convert_dict/aff_reader.h"

base::FilePath TestFilePath(const std::string& name) {}

AffReader;

TEST(AffReaderTest, EmptyFile) {}

TEST(AffReaderTest, LeadingComment) {}

TEST(AffReaderTest, AffixFlags) {}

TEST(AffReaderTest, PrefixSuffix) {}

TEST(AffReaderTest, IndexedAffix) {}

TEST(AffReaderTest, Rep) {}

TEST(AffReaderTest, OtherCommands) {}