X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Futils%2FReferenceLinkDB.php;h=dc4f5dfa98ccb7e1fbd28decd67417ca93d46dfa;hb=51def0d84955c7a951bd091eb5eeb3fce9deabd4;hp=0b2257205edf5a16f0ebbbcb7a85fb680aebaaea;hpb=5b0ebbc5de06b8a0e9679b78b45d0dc755db7986;p=github%2Fshaarli%2FShaarli.git diff --git a/tests/utils/ReferenceLinkDB.php b/tests/utils/ReferenceLinkDB.php index 0b225720..dc4f5dfa 100644 --- a/tests/utils/ReferenceLinkDB.php +++ b/tests/utils/ReferenceLinkDB.php @@ -4,6 +4,8 @@ */ class ReferenceLinkDB { + public static $NB_LINKS_TOTAL = 7; + private $_links = array(); private $_publicCount = 0; private $_privateCount = 0; @@ -14,12 +16,21 @@ class ReferenceLinkDB function __construct() { $this->addLink( - 'Free as in Freedom 2.0', + 'Link title: @website', + '?WDWyig', + 'Stallman has a beard and is part of the Free Software Foundation (or not). Seriously, read this.', + 0, + '20150310_114651', + 'stuff' + ); + + $this->addLink( + 'Free as in Freedom 2.0 @website', 'https://static.fsf.org/nosvn/faif-2.0.pdf', - 'Richard Stallman and the Free Software Revolution', + 'Richard Stallman and the Free Software Revolution. Read this.', 0, '20150310_114633', - 'free gnu software stallman' + 'free gnu software stallman -exclude stuff' ); $this->addLink( @@ -28,7 +39,7 @@ class ReferenceLinkDB 'A free software media publishing platform', 0, '20130614_184135', - 'gnu media web' + 'gnu media web .hidden' ); $this->addLink( @@ -124,5 +135,9 @@ class ReferenceLinkDB { return $this->_privateCount; } + + public function getLinks() + { + return $this->_links; + } } -?>