From: <dme...@us...> - 2014-05-21 10:01:03
|
Revision: 8395 http://sourceforge.net/p/bigdata/code/8395 Author: dmekonnen Date: 2014-05-21 10:01:00 +0000 (Wed, 21 May 2014) Log Message: ----------- commit to fix failed sync. Added Paths: ----------- branches/DEPLOYMENT_BRANCH_1_3_1/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3LoadBalancer_CountersLBS.java Added: branches/DEPLOYMENT_BRANCH_1_3_1/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3LoadBalancer_CountersLBS.java =================================================================== --- branches/DEPLOYMENT_BRANCH_1_3_1/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3LoadBalancer_CountersLBS.java (rev 0) +++ branches/DEPLOYMENT_BRANCH_1_3_1/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3LoadBalancer_CountersLBS.java 2014-05-21 10:01:00 UTC (rev 8395) @@ -0,0 +1,54 @@ +/** + +Copyright (C) SYSTAP, LLC 2006-2010. All rights reserved. + +Contact: + SYSTAP, LLC + 4501 Tower Road + Greensboro, NC 27410 + lic...@bi... + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ +package com.bigdata.journal.jini.ha; + +import com.bigdata.rdf.sail.webapp.lbs.IHALoadBalancerPolicy; +import com.bigdata.rdf.sail.webapp.lbs.policy.counters.CountersLBSPolicy; + +/** + * Test suite for the HA load balancer. + * + * @author <a href="mailto:tho...@us...">Bryan Thompson</a> + * + * @see <a href="http://trac.bigdata.com/ticket/624"> HA Load Balancer </a> + */ +public class TestHA3LoadBalancer_CountersLBS extends AbstractHA3LoadBalancerTestCase { + + public TestHA3LoadBalancer_CountersLBS() { + } + + public TestHA3LoadBalancer_CountersLBS(final String name) { + + super(name); + + } + + @Override + protected IHALoadBalancerPolicy newTestPolicy() { + + return new CountersLBSPolicy(); + + } + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |