Bug 1449

Summary: convert DOMTestDOMFrysk to junit
Product: frysk Reporter: Andrew Cagney <cagney>
Component: generalAssignee: Rick Moseley <rmoseley>
Status: RESOLVED FIXED    
Severity: normal CC: ajocksch
Priority: P1    
Version: unspecified   
Target Milestone: ---   
Host: Target:
Build: Last reconfirmed:
Bug Depends on: 2196    
Bug Blocks: 3392    

Description Andrew Cagney 2005-10-09 15:03:16 UTC
Converting to junit is fairly straight forward, for instance, this:

  if (testDOMImage.getName() == "test_image_2") {
    System.out.println("\npassed...DOMImage.getName");

is reduced to:

  assertEquals ("DOMImage.getName", "test_image_2", testDOMImage.getName ());

For consistency, the file should be named TestXXXXX.java.
Comment 1 Rick Moseley 2005-10-17 17:50:01 UTC
This is in the plans as soon I as the DOM code to where the GUI can use it to
populate the source window.  Hopefully a few days from now.
Comment 2 Rick Moseley 2006-01-09 14:28:59 UTC
This task has been converted to junit and its name changed to TestDOM.