예제 #1
0
 public AllureLifecycle StartTestContainer(string parentUuid, TestResultContainer container)
 {
     UpdateTestContainer(parentUuid, c => c.children.Add(container.uuid));
     StartTestContainer(container);
     return(this);
 }
예제 #2
0
 public virtual AllureLifecycle StartTestContainer(TestResultContainer container)
 {
     container.start = DateTimeOffset.Now.ToUnixTimeMilliseconds();
     storage.Put(container.uuid, container);
     return(this);
 }
예제 #3
0
 public AllureLifecycle StartTestContainer(TestResultContainer container)
 {
     container.start = ToUnixTimestamp();
     Storage.Put(container.uuid, container);
     return(this);
 }
예제 #4
0
 public AllureLifecycle StartTestContainer(TestResultContainer container)
 {
     container.start = ToUnixTimestamp(DateTimeOffset.Now);
     _storage.Put(container.uuid, container);
     return(this);
 }