blob: b54178ee4eae19a2d3ab9f7fc7bc05af29ff6fd3 [file] [log] [blame]
/*
* Copyright (C) 2014 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.integration.component
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import org.junit.AfterClass
import org.junit.BeforeClass
import org.junit.ClassRule
import org.junit.Test
/**
* Test AndroidComponentModelPlugin.
*/
class AndroidComponentPluginTest {
@ClassRule
public static GradleTestProject project = GradleTestProject.builder()
.forExpermimentalPlugin(true)
.create();
@BeforeClass
public static void setUp() {
project.buildFile << """
import com.android.build.gradle.model.AndroidComponentModelPlugin
apply plugin: AndroidComponentModelPlugin
model {
android.buildTypes {
custom
}
android.productFlavors {
flavor1
flavor2
}
}
"""
}
@AfterClass
static void cleanUp() {
project = null
}
@Test
void assemble() {
project.execute("assemble")
}
}