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

Fixing test-order dependency for FstObjectInputTest #2815

Merged
merged 1 commit into from
Dec 10, 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
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import org.apache.dubbo.common.serialize.model.AnimalEnum;
import org.apache.dubbo.common.serialize.model.person.FullAddress;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

Expand All @@ -41,6 +42,11 @@ public void setUp() {
this.fstObjectOutput = new FstObjectOutput(byteArrayOutputStream);
}

@After
public void tearDown() throws IOException {
new FstObjectInput(new ByteArrayInputStream(new byte[]{0}));
beiwei30 marked this conversation as resolved.
Show resolved Hide resolved
}


@Test
public void testWriteBool() throws IOException {
Expand Down