Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test the null cases of compareTo. #7

Merged
merged 3 commits into from
Oct 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions src/test/java/com/scalar/database/io/TextValueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,45 @@ public void compareTo_ThisSmallerThanGiven_ShouldReturnNegative() {
assertThat(actual < 0).isTrue();
}

@Test
public void compareTo_ThisNonNullAndGivenNull_ShouldReturnPositive() {
// Arrange
TextValue oneValue = new TextValue(ANY_NAME, "some_value");
TextValue anotherValue = new TextValue(ANY_NAME, (byte[]) null);

// Act
int actual = oneValue.compareTo(anotherValue);

// Assert
assertThat(actual > 0).isTrue();
}

@Test
public void compareTo_ThisNullAndGivenNonNull_ShouldReturnNegative() {
// Arrange
TextValue oneValue = new TextValue(ANY_NAME, (byte[]) null);
TextValue anotherValue = new TextValue(ANY_NAME, "some_value");

// Act
int actual = oneValue.compareTo(anotherValue);

// Assert
assertThat(actual < 0).isTrue();
}

@Test
public void compareTo_ThisAndGivenAreNull_ShouldReturnZero() {
// Arrange
TextValue oneValue = new TextValue(ANY_NAME, (byte[]) null);
TextValue anotherValue = new TextValue(ANY_NAME, (byte[]) null);

// Act
int actual = oneValue.compareTo(anotherValue);

// Assert
assertThat(actual == 0).isTrue();
}

@Test
public void constructor_NullGiven_ShouldThrowNullPointerException() {
// Act Assert
Expand Down