racket/collects/tests/drscheme
2010-01-23 16:03:50 +00:00
..
drscheme-test-util.ss brought test suites up to date 2009-09-21 22:43:39 +00:00
info.ss svn: r10078 2008-06-01 18:45:13 +00:00
io.ss fixed up these files to be friendlier to the dr dr 2009-10-17 21:23:35 +00:00
language-test.ss brought test suites up to date 2009-09-21 22:43:39 +00:00
module-lang-test-utils.ss fixed up these files to be friendlier to the dr dr 2009-10-17 21:23:35 +00:00
module-lang-test.ss fixed up these files to be friendlier to the dr dr 2009-10-17 21:23:35 +00:00
randomly-click-language-dialog.ss first attempt at randomly clicking on drscheme into drdr 2009-12-08 22:24:38 +00:00
randomly-click-preferences.ss first attempt at randomly clicking on drscheme into drdr 2009-12-08 22:24:38 +00:00
randomly-click.ss first attempt at randomly clicking on drscheme into drdr 2009-12-08 22:24:38 +00:00
README.ss svn: r17777 2010-01-23 16:03:50 +00:00
repl-test.ss added a test case for just creating a snip% (but the test case doesnt run yet) 2009-09-26 15:38:35 +00:00
run-tests.ss renamed README to README.ss 2009-11-16 12:00:03 +00:00
sample-solutions-one-window.ss fixed up these files to be friendlier to the dr dr 2009-10-17 21:23:35 +00:00
sample-solutions-testsuite-tp.scm use new require specs in many places 2008-02-23 09:42:03 +00:00
stepper-test.ss * Newlines at EOFs 2008-07-09 07:18:06 +00:00
syncheck-test.ss updated to new coloring of set!'d variables 2009-09-04 07:54:42 +00:00
teachpack.ss fixed up these files to be friendlier to the dr dr 2009-10-17 21:23:35 +00:00
time-keystrokes.ss Moved time-keystrokes to tests/drscheme 2008-08-07 05:57:25 +00:00
tool.ss renamed README to README.ss 2009-11-16 12:00:03 +00:00

#lang scheme/base
(provide all-tests)
(define all-tests (map symbol->string '(
#|

This directory contains code for testing DrScheme. To run the tests,
load run-test.ss. It will return a function that accepts the names of
tests. Those names must be listed here. If no arguments are passed to
the function, all tests will be run.

   stepper-test.ss 

   runs the stepper on the sample solutions and
   checks the results.
   (this test suite is not being maintained)  
 
|# io.ss #|

   This tests the drscheme's io implementation.
   
|# repl-test.ss #|

   This tests various interactions between parameters in the 
   implementation of drscheme.

|# language-test.ss #|   

   This tests that all of the individual settings in the language dialog 
   take effect in the repl.

|# module-lang-test.ss #|

   This tests the code involved in implementing the new module language.
   
   graphics.ss

   This tests the various graphic elements that can appear
   in programs.

  launcher.ss

   This tests the launcher feature of drscheme.

|# sample-solutions-one-window.ss #|

   This tests the sample solutions in HtDP,
   but reuses the same drscheme window.
   There is a race condition in this test,
   so it is commented out here, for now.
   
|# teachpack.ss #|

   Tests the teachpacks

|# syncheck-test.ss #|

|#)))