Skip to content

Commit

Permalink
Tests for CHAR and BYTE constructors
Browse files Browse the repository at this point in the history
These are tests for constructor of variants of CHAR and BYTE
  • Loading branch information
mitkola committed Jun 2, 2015
1 parent 9b03b13 commit 93372e8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ public void testVariantRecord() {

public void testVariantConstructors() {
VARIANT variant = new VARIANT((short) 1);
variant = new VARIANT((byte) 1);
variant = new VARIANT('1');
variant = new VARIANT((int) 1);
variant = new VARIANT((long) 1);
variant = new VARIANT((float) 1);
Expand Down

0 comments on commit 93372e8

Please sign in to comment.