Author: frisco
Date: 2007-06-18 12:54:48 -0700 (Mon, 18 Jun 2007)
New Revision: 5454

Modified:
   openlaszlo/branches/legals/docs/src/developers/lzunit.dbk
   openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$1.lzx
   openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$2.lzx
   openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$3.lzx
   openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$4.lzx
Log:
Change 20070618-laszlosystems-s by [EMAIL PROTECTED] on 2007-06-18 12:52:31 PDT
    in /Users/laszlosystems/src/svn/openlaszlo/branches/legals
    for http://svn.openlaszlo.org/openlaszlo/branches/legals

Summary: Corrected a bad assertion in doc example, narrowed the unnecessary 
whitespace in example canvases

New Features:

Bugs Fixed: LPP-314

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    

Tests:



Modified: openlaszlo/branches/legals/docs/src/developers/lzunit.dbk
===================================================================
--- openlaszlo/branches/legals/docs/src/developers/lzunit.dbk   2007-06-18 
18:18:12 UTC (rev 5453)
+++ openlaszlo/branches/legals/docs/src/developers/lzunit.dbk   2007-06-18 
19:54:48 UTC (rev 5454)
@@ -7,7 +7,7 @@
 <para>The functionality provided by the LzUnit framework is essentially 
comprised of two public classes — 
   
<indexterm><primary>TestCase</primary></indexterm><classname>TestCase</classname>
 and 
<indexterm><primary>TestSuite</primary></indexterm><classname>TestSuite</classname>.
 Each 
<indexterm><primary>TestSuite</primary></indexterm><classname>TestSuite</classname>
   contains one or more children that are instances of 
<indexterm><primary>TestCase</primary></indexterm><classname>TestCase</classname>.
 An LZX program that 
-  includes a <indexterm><primary>TestSuite</primary></indexterm> 
+  includes a 
<indexterm><primary>TestSuite</primary></indexterm><classname>TestCase</classname>
 
  will run all of its child 
<indexterm><primary>TestCase</primary></indexterm><classname>TestCase</classname>s,
 then report the number of test cases run, the number of failures (plus error 
messages), and the number of runtime errors.</para>
 <section><title>Including the lzunit component</title>
 <para>

Modified: openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$1.lzx
===================================================================
--- openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$1.lzx       
2007-06-18 18:18:12 UTC (rev 5453)
+++ openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$1.lzx       
2007-06-18 19:54:48 UTC (rev 5454)
@@ -1,6 +1,6 @@
 
-<canvas debug="true" height="600">
-  <debug y="500"/>
+<canvas debug="true">
+  <debug y="150"/>
   <include href="lzunit"/>
 
   <TestSuite>

Modified: openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$2.lzx
===================================================================
--- openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$2.lzx       
2007-06-18 18:18:12 UTC (rev 5453)
+++ openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$2.lzx       
2007-06-18 19:54:48 UTC (rev 5454)
@@ -1,6 +1,6 @@
 
-<canvas debug="true" height="400">
-  <debug y="80"/>
+<canvas debug="true">
+  <debug y="150"/>
   <include href="lzunit"/>
 
   <script>

Modified: openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$3.lzx
===================================================================
--- openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$3.lzx       
2007-06-18 18:18:12 UTC (rev 5453)
+++ openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$3.lzx       
2007-06-18 19:54:48 UTC (rev 5454)
@@ -1,6 +1,6 @@
 
-<canvas debug="true" height="800">
-    <debug x="100" y="280"/>
+<canvas debug="true">
+    <debug x="100" y="150"/>
     <include href="lzunit"/>
     
     <TestSuite>

Modified: openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$4.lzx
===================================================================
--- openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$4.lzx       
2007-06-18 18:18:12 UTC (rev 5453)
+++ openlaszlo/branches/legals/docs/src/developers/programs/lzunit-$4.lzx       
2007-06-18 19:54:48 UTC (rev 5454)
@@ -1,6 +1,6 @@
 
-<canvas debug="true" height="800">
- <debug y="500" />
+<canvas debug="true">
+ <debug y="150" />
   <include href="lzunit"/>
 
   <dataset name="places">
@@ -50,7 +50,7 @@
         assertEquals(2, nav.getNodeCount())
         assertTrue(nav.selectChild())
         nav.deleteNode()
-        assertFalse('Buffalo', nav.getNodeText())
+        assertFalse('Buffalo'==nav.getNodeText())
         assertTrue(nav.selectParent())
         assertEquals(1, nav.getNodeCount())
       </method>


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to