diff --git a/scripts/create-testbookmarks.php b/scripts/create-testbookmarks.php new file mode 100644 index 0000000..b0d2756 --- /dev/null +++ b/scripts/create-testbookmarks.php @@ -0,0 +1,27 @@ +addUser('dummy', 'dummy', 'dummy@example.org'); + +$bs = SemanticScuttle_Service_Factory::get('Bookmark'); +for ($nA = 0; $nA < 10; $nA++) { + $rand = rand(); + $bid = $bs->addBookmark( + 'http://example.org/' . $rand, + 'unittest bookmark #' . $rand, + 'description', + null, + 0, + array('unittest'), + null, false, false, + $uid + ); +} +?> \ No newline at end of file