blob: bb97bc1992919a1763f9df7696b852e394a413d5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.accumulo.proxy.its;
import org.apache.accumulo.harness.SharedMiniClusterBase;
import org.apache.accumulo.test.categories.MiniClusterOnlyTests;
import org.apache.accumulo.test.categories.SunnyDayTests;
import org.apache.thrift.protocol.TCompactProtocol;
import org.junit.BeforeClass;
import org.junit.experimental.categories.Category;
@Category({MiniClusterOnlyTests.class, SunnyDayTests.class})
public class TCompactProxyIT extends SimpleProxyBase {
@BeforeClass
public static void setProtocol() throws Exception {
SharedMiniClusterBase.startMiniClusterWithConfig(new TestConfig());
SimpleProxyBase.factory = new TCompactProtocol.Factory();
setUpProxy();
}
}