Klaus-Dieter Hesse has been working in the corporate world since 1996. Klaus-Dieter started at ThinkWare GmbH & Co. KG as the Owner, CEO and Chief Executive Officer. In 2001, they moved to DLink Central & Eastern Europe as the VP. In 2004, they joined BMC Software as the Premier Partner.
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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.android.build.gradle.internal.api.dsl.model
import com.android.build.api.dsl.model.AndroidTestOptions
import com.android.build.gradle.internal.api.dsl.sealing.SealableObject
import com.android.build.gradle.internal.api.dsl.sealing.SealableList
import com.android.build.gradle.internal.api.dsl.sealing.SealableSet
import org.gradle.api.NamedDomainObjectContainer
/**
* Implementation of [AndroidTestOptions]
*/
class AndroidTestOptionsImpl(
override val unitTests: UnitTestOptionsImpl)
: SealableObject(unitTests), AndroidTestOptions {
override val execution: NamedDomainObjectContainer<TestExecution>
get() = throw UnsupportedOperationException("Unused")
override val instrumentationOptions: InstrumentationOptionsImpl
get() = throw UnsupportedOperationException("Unused")
override val unitTestOptions: UnitTestOptionsImpl
get() = unitTests
override val unitTestIncludeAndroidResources: Boolean
get() = throw UnsupportedOperationException("Unused")
override val unitTestVariantName: String
get() = throw UnsupportedOperationException("Unused")
override val unitTestKeepRunning: Boolean
get() = throw UnsupportedOperationException("Unused")
override val unitTestInstrumentationRunnerArguments: Map<String, String>
Sign up to view 3 direct reports
Get started