Skip to content
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}));
Comment thread
beiwei30 marked this conversation as resolved.
}


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