Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/11 15:05:48 (13 years ago)
Author:
cneumuel
Message:

#1233

  • implemented pause, stop for single jobs
  • introduced Command property for jobs (to distinguish between state and command (abort vs. aborted))
  • improved behaviour of ItemTreeView (double click opens new window, selected item stays marked)
  • fixed bugs in StateLogGanttChartListView and HiveJobView
  • fixed cloning of client-side dtos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Tests/DaoTests.cs

    r5636 r5779  
    3030      job1.State = JobState.Offline;
    3131      job1.StateLog.Add(new DT.StateLog { State = JobState.Offline, DateTime = DateTime.Now });
     32      job1.Command = Command.Pause;
    3233
    3334      DT.Plugin plugin1 = new DT.Plugin();
     
    5859      Assert.IsTrue(job1.PluginsNeededIds.SequenceEqual(job1loaded.PluginsNeededIds));
    5960      Assert.AreEqual(job1.StateLog.Count, job1loaded.StateLog.Count);
     61      Assert.AreEqual(job1.Command, job1loaded.Command);
    6062      for (int i = 0; i < job1.StateLog.Count; i++) {
    6163        Assert.AreEqual(job1.Id, job1loaded.StateLog[i].JobId);
Note: See TracChangeset for help on using the changeset viewer.