/******************************************************************************* * Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu> * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.egit.gitflow.op; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import org.eclipse.egit.core.op.BranchOperation; import org.eclipse.egit.gitflow.GitFlowRepository; import org.eclipse.jgit.lib.Repository; import org.junit.Test; public class FeatureStartOperationTest extends AbstractFeatureOperationTest { @Test public void testFeatureStart() throws Exception { Repository repository = testRepository.getRepository(); GitFlowRepository gfRepo = init("testFeatureStart\n\nfirst commit\n"); FeatureStartOperation featureStartOperation = new FeatureStartOperation(gfRepo, MY_FEATURE); assertNull(featureStartOperation.getSchedulingRule()); featureStartOperation.execute(null); assertEquals(gfRepo.getConfig().getFullFeatureBranchName(MY_FEATURE), repository.getFullBranch()); } public void testFeatureStartOnMaster() throws Exception { Repository repository = testRepository.getRepository(); GitFlowRepository gfRepo = init("testFeatureStartOnMaster\n\nfirst commit\n"); BranchOperation branchOperation = new BranchOperation(repository, MY_MASTER); branchOperation.execute(null); new FeatureStartOperation(gfRepo, MY_FEATURE).execute(null); } }