This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 75549 - J2MEUNIT - missing extends TestCase and imports
Summary: J2MEUNIT - missing extends TestCase and imports
Status: VERIFIED FIXED
Alias: None
Product: javame
Classification: Unclassified
Component: JUnit (show other bugs)
Version: 6.x
Hardware: PC All
: P3 blocker (vote)
Assignee: Jiri Prazak
URL:
Keywords:
Depends on:
Blocks: 77184
  Show dependency tree
 
Reported: 2006-04-26 12:55 UTC by Lukas Hasik
Modified: 2007-05-31 13:37 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lukas Hasik 2006-04-26 12:55:58 UTC
060426

the generated class :
public class HelloMidletTest {

    public HelloMidletTest(String testName) {
        super(testName);
    }

there are missing imports for j2meunit.framework.TestCase and the class should
extend TestCase
Comment 1 Lukas Hasik 2006-05-31 19:53:43 UTC
060531
it's fixed

the generated code looks like
package hello;
import j2meunit.framework.*;

public class HelloMidletTest extends TestCase {
Comment 2 Jiri Prazak 2006-06-07 06:11:03 UTC
fixed
Comment 3 Lukas Hasik 2006-06-07 06:57:57 UTC
verified in 060531