comparison test/org/tmatesoft/hg/test/TestCheckout.java @ 526:2f9ed6bcefa2

Initial support for Revert command with accompanying minor refactoring
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 15 Jan 2013 17:07:19 +0100
parents
children 47b7bedf0569
comparison
equal deleted inserted replaced
525:0be5be8d57e9 526:2f9ed6bcefa2
1 /*
2 * Copyright (c) 2013 TMate Software Ltd
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * For information on how to redistribute this software under
14 * the terms of a license other than GNU General Public License
15 * contact TMate Software at support@hg4j.com
16 */
17 package org.tmatesoft.hg.test;
18
19 import org.junit.Assert;
20 import org.junit.Test;
21
22 /**
23 *
24 * @author Artem Tikhomirov
25 * @author TMate Software Ltd.
26 */
27 public class TestCheckout {
28
29
30 @Test
31 public void testCleanCheckoutInEmptyDir() {
32 Assert.fail("clone without update, checkout, status");
33 }
34
35 @Test
36 public void testCleanCheckoutInDirtyDir() {
37 Assert.fail("Make sure WC is cleared prior to clean checkout");
38 }
39
40 @Test
41 public void testBranchCheckout() {
42 Assert.fail("Make sure branch file is written");
43 }
44 }