1 package com.atlassian.plugins.codegen.modules.stash.hook;
2
3 import com.atlassian.plugins.codegen.AbstractModuleCreatorTestCase;
4 import org.junit.Before;
5
6 public class RepositoryHookModuleCreatorTest extends AbstractModuleCreatorTestCase<RepositoryHookProperties>
7 {
8 public RepositoryHookModuleCreatorTest()
9 {
10 super("repository-hook", new RepositoryHookModuleCreator());
11 }
12
13
14 @Before
15 public void setupProps() throws Exception
16 {
17 setProps(new RepositoryHookProperties("MyRepositoryHook", "pre"));
18 }
19
20 }