~piastucki/bzr-eclipse/history-view-enhancements

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.core.test/src/org/vcs/bazaar/eclipse/core/test/BranchTest.java

  • Committer: Guillermo Gonzalez
  • Date: 2007-03-14 12:15:50 UTC
  • Revision ID: guillo.gonzo@gmail.com-20070314121550-tltk3b6f3zblf0dh
Initial commit with the new code layout.
Now starts the real work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * 
 
3
 */
 
4
package org.vcs.bazaar.eclipse.core.test;
 
5
 
 
6
import org.vcs.bazaar.eclipse.core.model.IBzrBranch;
 
7
import org.vcs.bazaar.eclipse.core.repository.BranchFactory;
 
8
 
 
9
/**
 
10
 * @author guillermo
 
11
 *
 
12
 */
 
13
public class BranchTest extends BaseCoreTest {
 
14
 
 
15
        private IBzrBranch branch;
 
16
        
 
17
        /* (non-Javadoc)
 
18
         * @see junit.framework.TestCase#setUp()
 
19
         */
 
20
        protected void setUp() throws Exception {
 
21
                super.setUp();
 
22
        }
 
23
 
 
24
        /* (non-Javadoc)
 
25
         * @see junit.framework.TestCase#tearDown()
 
26
         */
 
27
        protected void tearDown() throws Exception {
 
28
                super.tearDown();
 
29
        }
 
30
 
 
31
        /**
 
32
         * Test method for {@link org.vcs.bazaar.eclipse.internal.core.LocalBzrBranch#isLocal()}.
 
33
         */
 
34
        public void testIsLocal() {
 
35
                assertTrue(this.branch.isLocal());
 
36
        }
 
37
 
 
38
        /**
 
39
         * Test method for {@link org.vcs.bazaar.eclipse.internal.core.LocalBzrBranch#getChanges()}.
 
40
         */
 
41
        public void testGetChanges() {
 
42
                fail("Not yet implemented"); // TODO
 
43
        }
 
44
 
 
45
        /**
 
46
         * Test method for {@link org.vcs.bazaar.eclipse.internal.core.BzrBranch#equals(java.lang.Object)}.
 
47
         */
 
48
        public void testEqualsObject() {
 
49
                fail("Not yet implemented"); // TODO
 
50
        }
 
51
 
 
52
        /**
 
53
         * Test method for {@link org.vcs.bazaar.eclipse.internal.core.BzrBranch#compareTo(java.lang.Object)}.
 
54
         */
 
55
        public void testCompareTo() {
 
56
                fail("Not yet implemented"); // TODO
 
57
        }
 
58
 
 
59
}