From 8e75f26f71735514af6f5020c0b88bec404a5acf Mon Sep 17 00:00:00 2001 From: Adi Suissa-Peleg Date: Tue, 20 Aug 2024 13:50:22 +0000 Subject: [PATCH] style-guide: update testing links Signed-off-by: Adi Suissa-Peleg --- STYLE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/STYLE.md b/STYLE.md index 42d255be31a1..401b55c78889 100644 --- a/STYLE.md +++ b/STYLE.md @@ -233,8 +233,8 @@ environment. In general, there should be no non-local network access. In additio Tests should be deterministic. They should not rely on randomness or details such as the current time. Instead, mocks such as -[`MockRandomGenerator`](test/mocks/runtime/mocks.h) and -[`Mock*TimeSource`](test/mocks/common.h) should be used. +[`MockRandomGenerator`](test/mocks/common.h) and +[`SimulatedTimeSystem`](test/test_common/simulated_time_system.h) should be used. # Google style guides for other languages