Restructure testing guidelines, specify new freshness owner

PiperOrigin-RevId: 470244206
Change-Id: I5dc881dc9ac6fd78a2f519c7c6ec5625ef616dff
diff --git a/docs/testing.md b/docs/testing.md
index 50f5928..2829821 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -127,7 +127,7 @@
 pre-release version of the Android SDK then you may see an error like
 
 ```
-java.lang.IllegalArgumentException: Package targetSdkVersion=33 > maxSdkVersion=32
+java.lang.IllegalArgumentException: Package targetSdkVersion=31 > maxSdkVersion=30
 at org.robolectric.plugins.DefaultSdkPicker.configuredSdks(DefaultSdkPicker.java:118)
 at org.robolectric.plugins.DefaultSdkPicker.selectSdks(DefaultSdkPicker.java:69)
 ```
@@ -137,9 +137,9 @@
 following contents:
 
 ```
-# Robolectric currently doesn't support API 33, so we have to explicitly specify 32 as the target
+# Robolectric currently doesn't support API 31, so we have to explicitly specify 30 as the target
 # sdk for now. Remove when no longer necessary.
-sdk=32
+sdk=30
 ```
 
 ## Using the emulator {#emulator}