Skip to content

Commit

Permalink
Test case for #115
Browse files Browse the repository at this point in the history
  • Loading branch information
albfernandez committed Jun 22, 2023
1 parent e92dd93 commit b47761e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.linuxense.javadbf.bug105;
package com.linuxense.javadbf.bug115;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
Expand All @@ -15,17 +15,17 @@
import com.linuxense.javadbf.DBFUtils;
import com.linuxense.javadbf.DBFWriter;

public class Bug105AppendTest {
public class Bug115AppendTest {

public Bug105AppendTest() {
public Bug115AppendTest() {
super();
}

@Test
public void testAppend() throws Exception {
File orig = new File("src/test/resources/bug-105/bug105.dbf");
File orig = new File("src/test/resources/bug-115/bug115.dbf");

File tmp = File.createTempFile("bug105", ".dbf");
File tmp = File.createTempFile("bug115", ".dbf");
copyFile(orig, tmp);
DBFWriter writer = null;

Expand Down
File renamed without changes.

0 comments on commit b47761e

Please sign in to comment.