1 package org.apache.maven.scm.tck.command.mkdir;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.io.File;
23
24 import org.apache.maven.scm.ScmFileSet;
25 import org.apache.maven.scm.ScmTckTestCase;
26 import org.apache.maven.scm.command.mkdir.MkdirScmResult;
27 import org.junit.Test;
28
29 import static org.junit.Assert.assertEquals;
30 import static org.junit.Assert.assertNotNull;
31
32
33
34
35
36
37
38 public abstract class MkdirCommandTckTest
39 extends ScmTckTestCase
40 {
41 @Test
42 public void testMkdirCommandMkdirLocal()
43 throws Exception
44 {
45 ScmFileSet fileSet = new ScmFileSet( getWorkingCopy(), new File( getMissingDirectory() ) );
46
47 MkdirScmResult result = getScmManager().mkdir( getScmRepository(), fileSet, null, true );
48
49 assertResultIsSuccess( result );
50
51 assertNotNull( result.getCreatedDirs() );
52
53 assertEquals( "Directory should have been added.", 1, result.getCreatedDirs().size() );
54 }
55
56 protected String getMissingDirectory()
57 {
58 return "missing";
59 }
60 }