VerifyProcessSuite.java |
1 /** 2 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved. 3 * 4 * The contents of this file are subject to the terms of the Liferay Enterprise 5 * Subscription License ("License"). You may not use this file except in 6 * compliance with the License. You can obtain a copy of the License by 7 * contacting Liferay, Inc. See the License for the specific language governing 8 * permissions and limitations under the License, including but not limited to 9 * distribution rights of the Software. 10 * 11 * 12 * 13 */ 14 15 package com.liferay.portal.verify; 16 17 /** 18 * <a href="VerifyProcessSuite.java.html"><b><i>View Source</i></b></a> 19 * 20 * @author Alexander Chow 21 */ 22 public class VerifyProcessSuite extends VerifyProcess { 23 24 protected void doVerify() throws Exception { 25 verify(new VerifyProperties()); 26 verify(new VerifyLucene()); 27 28 verify(new VerifyMySQL()); 29 30 verify(new VerifyCounter()); 31 verify(new VerifyUUID()); 32 33 verify(new VerifyBlogs()); 34 verify(new VerifyBookmarks()); 35 verify(new VerifyDocumentLibrary()); 36 verify(new VerifyGroup()); 37 verify(new VerifyImageGallery()); 38 verify(new VerifyJournal()); 39 verify(new VerifyLayout()); 40 verify(new VerifyMessageBoards()); 41 verify(new VerifyOrganization()); 42 verify(new VerifyRole()); 43 verify(new VerifySocial()); 44 verify(new VerifyUser()); 45 verify(new VerifyWiki()); 46 47 // VerifyBlogsTrackbacks looks at every blog comment to see if it is a 48 // trackback and verifies that the source URL is a valid URL. 49 50 //verify(new VerifyBlogsTrackbacks()); 51 52 // VerifyImage is very powerful because it removes all images that it 53 // believes is stale. Do not run this unless you are also not managing 54 // images in Liferay's Image service for your custom models. 55 56 //verify(new VerifyImage()); 57 } 58 59 }