This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
JsSimpleUnit.css | Tue Jun 16 19:36:42 -0700 2009 | |
| |
README | Tue Jun 16 19:44:35 -0700 2009 | |
| |
script/ | Tue Jun 16 19:49:54 -0700 2009 | |
| |
testJsSimpleUnit.html | Tue Jun 16 19:36:42 -0700 2009 |
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>






