TestDB.java Source code

Java tutorial

Introduction

Here is the source code for TestDB.java

Source

import java.sql.Connection;

import junit.framework.TestCase;

public class TestDB extends TestCase {
    private Connection dbConn;

    protected void setUp() {
        // connect to database
    }

    protected void tearDown() {
        // disconnect from database
    }

    public void testAccountAccess() {
    }

    public void testEmployeeAccess() {
    }
}