public
Description: Extremely simple JavaScript unit testing framework.
Homepage:
Clone URL: git://github.com/jsuchy/JsSimpleUnit.git
name age message
file JsSimpleUnit.css Tue Jun 16 19:36:42 -0700 2009 improved styling, merged framework from code camp [jsuchy]
file README Tue Jun 16 19:44:35 -0700 2009 updated readme with sample usage [jsuchy]
directory script/ Tue Jun 16 19:49:54 -0700 2009 added copyright [jsuchy]
file testJsSimpleUnit.html Tue Jun 16 19:36:42 -0700 2009 improved styling, merged framework from code camp [jsuchy]
README
JsSimpleUnit is an extremely simple JavaScript testing framework.

Example:

<html>
  <head>
    <script type="text/javascript" src="script/JsSimpleUnit.js"></script>
    <link href="JsSimpleUnit.css" rel="stylesheet" type="text/css">
    <title>Sample Usage</title>
  </head
  <body>
  
  </body>
  
  <script type="text/javascript">
    test(
      {
        sillyTest: function() {
          test.assertEquals(1, 1);
        }  
      }
    );
  </script>
  
</html>