javacommons/javastorage/tsrc/java_api/javasrc/com/nokia/mj/test/storage/TestPreinstallTable.java
changeset 80 d6dafc5d983f
parent 21 2a9601315dfc
equal deleted inserted replaced
78:71ad690e91f5 80:d6dafc5d983f
    19 package com.nokia.mj.test.storage;
    19 package com.nokia.mj.test.storage;
    20 
    20 
    21 import com.nokia.mj.test.storage.utils.StorageSessionTestUtils;
    21 import com.nokia.mj.test.storage.utils.StorageSessionTestUtils;
    22 import com.nokia.mj.impl.storage.*;
    22 import com.nokia.mj.impl.storage.*;
    23 
    23 
    24 import com.nokia.mj.impl.installer.utils.InstallerMain;
    24 import com.nokia.mj.impl.rt.test.UnitTestSuiteCreator;
    25 import j2meunit.framework.Test;
    25 import j2meunit.framework.Test;
    26 import j2meunit.framework.TestCase;
    26 import j2meunit.framework.TestCase;
    27 import j2meunit.framework.TestMethod;
    27 import j2meunit.framework.TestMethod;
    28 import j2meunit.framework.TestSuite;
    28 import j2meunit.framework.TestSuite;
    29 
    29 
    30 /**
    30 /**
    31  * StorageSession OTA table specific test cases. See test methods for test
    31  * StorageSession OTA table specific test cases. See test methods for test
    32  * case details.
    32  * case details.
    33  */
    33  */
    34 public class TestPreinstallTable extends TestCase implements InstallerMain, StorageNames
    34 public class TestPreinstallTable extends TestCase implements UnitTestSuiteCreator, StorageNames
    35 {
    35 {
    36     /**
       
    37      * Directory for JavaStorage tests.
       
    38      */
       
    39     private static final String iTestRoot = "./jstest";
       
    40 
       
    41     /**
       
    42      * Directory for JavaStorage journal and temp files.
       
    43      */
       
    44     private static final String iIsRoot = iTestRoot + "/js";
       
    45 
       
    46     private StorageSession iSession = null;
    36     private StorageSession iSession = null;
    47     private StorageSessionTestUtils iJtu = null;
    37     private StorageSessionTestUtils iJtu = null;
    48 
    38 
    49     public void installerMain(String[] args)
    39     public TestSuite createTestSuite(String[] args)
    50     {
    40     {
    51         TestSuite suite = new TestSuite(this.getClass().getName());
    41         TestSuite suite = new TestSuite(this.getClass().getName());
    52 
    42 
    53         suite.addTest(new TestPreinstallTable("testPreinstallTable", new TestMethod()
    43         suite.addTest(new TestPreinstallTable("testPreinstallTable", new TestMethod()
    54         {
    44         {
    56             {
    46             {
    57                 ((TestPreinstallTable)tc).testPreinstallTable();
    47                 ((TestPreinstallTable)tc).testPreinstallTable();
    58             }
    48             }
    59         }));
    49         }));
    60 
    50 
    61         com.nokia.mj.impl.utils.OmjTestRunner.run(suite);
    51         return suite;
    62     }
    52     }
    63 
    53 
    64     public TestPreinstallTable()
    54     public TestPreinstallTable()
    65     {
    55     {
    66     }
    56     }