davezych / shience

A .NET port(ish) of Github's Scientist library. (https://github.com/github/scientist)
MIT License
9 stars 1 forks source link

ExperimentResult should record start time of experiment #29

Closed davezych closed 8 years ago

davezych commented 8 years ago

There is no start time recorded on the experiment result, which would be very useful when publishing.

MovGP0 commented 8 years ago

The .Execute() methods may call the DateTime.UtcNow property to get the current DateTime and save it in the ExperimentResult.

Note: The usage of local time is not advised.

davezych commented 8 years ago

Implemented in #32. Closing.