本文整理匯總了C#中nicTest.diff_match_patchTest.match_alphabet方法的典型用法代碼示例。如果您正苦於以下問題:C# diff_match_patchTest.match_alphabet方法的具體用法?C# diff_match_patchTest.match_alphabet怎麽用?C# diff_match_patchTest.match_alphabet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nicTest.diff_match_patchTest
的用法示例。
在下文中一共展示了diff_match_patchTest.match_alphabet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: match_alphabetTest
public void match_alphabetTest()
{
var dmp = new diff_match_patchTest();
// Initialise the bitmasks for Bitap.
var bitmask = new Dictionary<char, int>{{'a', 4}, {'b', 2}, {'c', 1}};
CollectionAssert.AreEqual(bitmask, dmp.match_alphabet("abc"), "match_alphabet: Unique.");
bitmask.Clear();
bitmask.Add('a', 37);
bitmask.Add('b', 18);
bitmask.Add('c', 8);
CollectionAssert.AreEqual(bitmask, dmp.match_alphabet("abcaba"), "match_alphabet: Duplicates.");
}