summaryrefslogtreecommitdiff
path: root/fpdf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'fpdf_test.go')
-rw-r--r--fpdf_test.go17
1 files changed, 9 insertions, 8 deletions
diff --git a/fpdf_test.go b/fpdf_test.go
index 267bc6c..5035bd8 100644
--- a/fpdf_test.go
+++ b/fpdf_test.go
@@ -20,9 +20,6 @@ import (
"bufio"
"bytes"
"fmt"
- "gofpdf"
- "gofpdf/internal/example"
- "gofpdf/internal/files"
"io"
"io/ioutil"
"math"
@@ -34,6 +31,10 @@ import (
"strings"
"testing"
"time"
+
+ "github.com/jung-kurt/gofpdf"
+ "github.com/jung-kurt/gofpdf/internal/example"
+ "github.com/jung-kurt/gofpdf/internal/files"
)
func init() {
@@ -2711,8 +2712,8 @@ func ExampleFpdf_SetUnderlineThickness() {
// Successfully generated pdf/Fpdf_UnderlineThickness.pdf
}
-// ExampleFpdf_strikeout demonstrates striked-out text
-func ExampleFpdf_strikeout() {
+// ExampleFpdf_Cell_strikeout demonstrates striked-out text
+func ExampleFpdf_Cell_strikeout() {
pdf := gofpdf.New("P", "mm", "A4", "") // 210mm x 297mm
pdf.AddPage()
@@ -2720,12 +2721,12 @@ func ExampleFpdf_strikeout() {
for fontSize := 4; fontSize < 40; fontSize += 10 {
pdf.SetFont("Arial", "S", float64(fontSize))
pdf.SetXY(0, float64(fontSize))
- pdf.Cell(40, 10, "Hello World\n")
+ pdf.Cell(40, 10, "Hello World")
}
- fileStr := example.Filename("Fpdf_strikeout")
+ fileStr := example.Filename("Fpdf_Cell_strikeout")
err := pdf.OutputFileAndClose(fileStr)
example.Summary(err, fileStr)
// Output:
- // Successfully generated pdf/Fpdf_strikeout.pdf
+ // Successfully generated pdf/Fpdf_Cell_strikeout.pdf
}