Skip to content
Snippets Groups Projects
Commit f69e3100 authored by kruthar's avatar kruthar
Browse files

[jdbc] added junit testing stubs for jdbc-binding

parent fd29cda7
No related branches found
No related tags found
No related merge requests found
......@@ -41,5 +41,11 @@ LICENSE file.
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
package com.yahoo.ycsb.db;
import static org.junit.Assert.*;
import org.junit.Test;
/**
* Created by kruthar on 11/2/15.
*/
public class JdbcDBClientTest {
@Test
public void insertTest() {
assertTrue(true);
}
@Test
public void updateTest() {
assertTrue(true);
}
@Test
public void readTest() {
assertTrue(true);
}
@Test
public void deleteTest() {
assertTrue(true);
}
@Test
public void scanTest() {
assertTrue(true);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment