public virtual void SetUp()
        {
            SoapService = Repository.StrictMock<IJiraProxy>();
            ServiceFactory = Repository.StrictMock<IJiraServiceFactory>();
            loggerMock = Repository.Stub<ILogger>();

            ComponentRepository.Instance.Register(loggerMock);
            ComponentRepository.Instance.Register(SoapService);
            ComponentRepository.Instance.Register(ServiceFactory);
        }
Exemplo n.º 2
0
 public LabelCommand(IJiraProxy jira, string help)
     : base(jira, help)
 {
 }
Exemplo n.º 3
0
 public PairsCommand(IJiraProxy jira, string help)
     : base(jira, help)
 {
 }
Exemplo n.º 4
0
 public SetOrderCommand(IJiraProxy jira, string help)
     : base(jira, help)
 {
 }
Exemplo n.º 5
0
 public FileIssueCommand(IJiraProxy proxy, string help)
     : base(proxy, help)
 {
 }
Exemplo n.º 6
0
 public LinkIssueCommand(IJiraProxy jira, string help)
     : base(jira, help)
 {
 }
Exemplo n.º 7
0
 public TaskDropperCommand(IJiraProxy proxy, string help)
     : base(proxy, help)
 {
 }
Exemplo n.º 8
0
 public ListProjectsCommand(IJiraProxy proxy, string help)
     : base(proxy, help)
 {
 }
Exemplo n.º 9
0
 public EstimateCommand(IJiraProxy jira, string help)
     : base(jira, help)
 {
 }
Exemplo n.º 10
0
 public SearchCommand(IJiraProxy proxy, string help)
     : base(proxy, help)
 {
 }