Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adnan Ahmad
YCSB
Commits
f69e3100
Commit
f69e3100
authored
9 years ago
by
kruthar
Browse files
Options
Downloads
Patches
Plain Diff
[jdbc] added junit testing stubs for jdbc-binding
parent
fd29cda7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
jdbc/pom.xml
+6
-0
6 additions, 0 deletions
jdbc/pom.xml
jdbc/src/test/java/com/yahoo/ycsb/db/JdbcDBClientTest.java
+35
-0
35 additions, 0 deletions
jdbc/src/test/java/com/yahoo/ycsb/db/JdbcDBClientTest.java
with
41 additions
and
0 deletions
jdbc/pom.xml
+
6
−
0
View file @
f69e3100
...
...
@@ -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>
This diff is collapsed.
Click to expand it.
jdbc/src/test/java/com/yahoo/ycsb/db/JdbcDBClientTest.java
0 → 100644
+
35
−
0
View file @
f69e3100
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
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment