/* * Copyright 2000-2012 JetBrains s.r.o. * * 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 jetbrains.buildServer.agent.android; import jetbrains.buildServer.agent.AgentRunningBuild; import jetbrains.buildServer.agent.BuildFinishedStatus; import jetbrains.buildServer.agent.BuildProgressLogger; import jetbrains.buildServer.agent.BuildRunnerContext; import org.jetbrains.annotations.NotNull; public class AndroidTestBuildProcess extends FutureBasedBuildProcess { @NotNull private final AgentRunningBuild myBuild; @NotNull private final BuildRunnerContext myContext; @NotNull private final AndroidEnvironment myEnvironment; public AndroidTestBuildProcess(@NotNull final AgentRunningBuild build, @NotNull final BuildRunnerContext context) { myBuild = build; myContext = context; myEnvironment = new AndroidEnvironment(context, false, false); } @NotNull public BuildFinishedStatus call() throws Exception { final BuildProgressLogger logger = myBuild.getBuildLogger(); logger.targetStarted("Android Test"); logger.message("Not implemented yet"); logger.targetFinished("Android Test"); return BuildFinishedStatus.FINISHED_SUCCESS; } }