diff --git "a/uc_test_payment.module" "b/uc_test_payment_adminsettings.module"
index c94e74c..16caedd 100644
--- "a/uc_test_payment.module"
+++ "b/uc_test_payment_adminsettings.module"
@@ -133,6 +133,14 @@ function uc_test_payment_method($op, &$arg1) {
     // uc_order_update_status($order->order_id, $arg1->payment_details['uc_test_payment_status']);
     break;
 
+  case 'settings':
+      $form['redirect'] = array(
+        '#value' => t('<p>Your Superuser (uid = 1) can use the Test Payment method by default. To allow others access, you need to <a href="!permissions_link">enable role-based permission</a> in the <strong>uc_test_payment module</strong> section of the permission matrix.</p>
+         <p>When selected as a payment method by those with permission, the tester may dynamically select at checkout the uc_order status to be assigned to a test transaction following review and order submission.</p>
+         <p>NOTE: Admin/tester use of the Test Payment method does <strong>NOT</strong> require you to take your site off-line or into "sandbox" mode. Real World customers may continue to use your site in parallel with those using the Test Payment method.</p>
+         <p>IMPORTANT: Remember to administratively delete test purchases in the <a href="!ordermgt_link">Order Management section</a> of your store to keep Test Payment transactions from tainting sales and shipping data in a live site.</p>', array('!permissions_link' => url('admin/user/permissions'), '!ordermgt_link' => url('admin/store/orders')))
+      );
+      return $form;
   }
 }
 
