diff -r 89a701fec3a1 -r 0146b1916bc0 CHANGES.html --- a/CHANGES.html Sat May 07 22:05:29 2011 +0200 +++ b/CHANGES.html Mon May 09 22:03:43 2011 +0200 @@ -83,6 +83,16 @@
The following static methods have been moved from the InterferenceHelper class to the WifiPhy class: +
+static Time CalculateTxDuration (uint32_t size, WifiMode payloadMode, enum WifiPreamble preamble); +static WifiMode GetPlcpHeaderMode (WifiMode payloadMode, WifiPreamble preamble); +static uint32_t GetPlcpHeaderDurationMicroSeconds (WifiMode payloadMode, WifiPreamble preamble); +static uint32_t GetPlcpPreambleDurationMicroSeconds (WifiMode payloadMode, WifiPreamble preamble); +static uint32_t GetPayloadDurationMicroSeconds (uint32_t size, WifiMode payloadMode); ++
Unit test case DoRun() functions no longer return a bool value. Now, they don't return a value at all. The motivation for this change was to disallow users from merely returning "true" from a test case to force an error to be recorded. Instead, test case macros should be used.