com.klarna.hiverunner.builder.HiveShellTearable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hiverunner Show documentation
Show all versions of hiverunner Show documentation
HiveRunner is a unit test framework based on JUnit (4 or 5) that enables TDD development of Hive SQL without the need of any installed dependencies.
/*
* Copyright 2013 Klarna AB
*
* Licensed 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 com.klarna.hiverunner.builder;
import com.klarna.hiverunner.CommandShellEmulation;
import com.klarna.hiverunner.HiveServerContainer;
import com.klarna.hiverunner.HiveShellContainer;
import java.util.List;
import java.util.Map;
/**
* HiveShellContainer implementation that will do a full tear down of the hive server after test method is executed.
*/
class HiveShellTearable extends HiveShellBase implements HiveShellContainer {
HiveShellTearable(HiveServerContainer hiveServerContainer, Map hiveConf,
List setupScripts, List resources,
List scriptsUnderTest, CommandShellEmulation commandShellEmulation) {
super(hiveServerContainer, hiveConf, setupScripts, resources, scriptsUnderTest, commandShellEmulation);
}
@Override
public void tearDown() {
hiveServerContainer.tearDown();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy