本文整理汇总了C++中Chrome::prepare方法的典型用法代码示例。如果您正苦于以下问题:C++ Chrome::prepare方法的具体用法?C++ Chrome::prepare怎么用?C++ Chrome::prepare使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Chrome
的用法示例。
在下文中一共展示了Chrome::prepare方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: itShouldGracefullyExitWhenFileIsNotFound
void TestChromeBookmarks::itShouldGracefullyExitWhenFileIsNotFound()
{
FakeFindProfile finder(QList<Profile>() << Profile("FileNotExisting.json", NULL));
Chrome *chrome = new Chrome(&finder, this);
chrome->prepare();
QCOMPARE(chrome->match("any", true).size(), 0);
}
示例2: itShouldFindOnlyMatches
void TestChromeBookmarks::itShouldFindOnlyMatches()
{
Chrome *chrome = new Chrome(m_findBookmarksInCurrentDirectory.data(), this);
chrome->prepare();
QList<BookmarkMatch> matches = chrome->match("other", false);
QCOMPARE(matches.size(), 1);
verifyMatch(matches[0], "bookmark in other bookmarks", "http://otherbookmarks.com/", 0.45, QueryMatch::PossibleMatch);
}
示例3: itShouldClearResultAfterCallingTeardown
void TestChromeBookmarks::itShouldClearResultAfterCallingTeardown()
{
Chrome *chrome = new Chrome(m_findBookmarksInCurrentDirectory.data(), this);
chrome->prepare();
QCOMPARE(chrome->match("any", true).size(), 3);
chrome->teardown();
QCOMPARE(chrome->match("any", true).size(), 0);
}
示例4: itShouldFindAllBookmarks
void TestChromeBookmarks::itShouldFindAllBookmarks()
{
Chrome *chrome = new Chrome(m_findBookmarksInCurrentDirectory.data(), this);
chrome->prepare();
QList<BookmarkMatch> matches = chrome->match("any", true);
QCOMPARE(matches.size(), 3);
verifyMatch(matches[0], "some bookmark in bookmark bar", "http://somehost.com/", 0.18, QueryMatch::PossibleMatch);
verifyMatch(matches[1], "bookmark in other bookmarks", "http://otherbookmarks.com/", 0.18, QueryMatch::PossibleMatch);
verifyMatch(matches[2], "bookmark in somefolder", "http://somefolder.com/", 0.18, QueryMatch::PossibleMatch);
}
示例5: itShouldFindBookmarksFromAllProfiles
void TestChromeBookmarks::itShouldFindBookmarksFromAllProfiles()
{
FakeFindProfile findBookmarksFromAllProfiles(QList<Profile>()
<< Profile("chrome-config-home/Chrome-Bookmarks-Sample.json", new FallbackFavicon(this))
<< Profile("chrome-config-home/Chrome-Bookmarks-SecondProfile.json", new FallbackFavicon(this)) );
Chrome *chrome = new Chrome(&findBookmarksFromAllProfiles, this);
chrome->prepare();
QList<BookmarkMatch> matches = chrome->match("any", true);
QCOMPARE(matches.size(), 4);
verifyMatch(matches[0], "some bookmark in bookmark bar", "http://somehost.com/", 0.18, QueryMatch::PossibleMatch);
verifyMatch(matches[1], "bookmark in other bookmarks", "http://otherbookmarks.com/", 0.18, QueryMatch::PossibleMatch);
verifyMatch(matches[2], "bookmark in somefolder", "http://somefolder.com/", 0.18, QueryMatch::PossibleMatch);
verifyMatch(matches[3], "bookmark in secondProfile", "http://secondprofile.com/", 0.18, QueryMatch::PossibleMatch);
}