From eb7a0af9337a57742d5f8d96cceac470eb5e3170 Mon Sep 17 00:00:00 2001 From: Torsten Bergmann Date: Sun, 10 Sep 2023 00:37:42 +0200 Subject: [PATCH] PDFParagraphTest has not test methods fix #51 --- src/Artefact-Core-Tests/PDFParagraphTest.class.st | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Artefact-Core-Tests/PDFParagraphTest.class.st b/src/Artefact-Core-Tests/PDFParagraphTest.class.st index c0a224a..0791a23 100644 --- a/src/Artefact-Core-Tests/PDFParagraphTest.class.st +++ b/src/Artefact-Core-Tests/PDFParagraphTest.class.st @@ -62,3 +62,15 @@ PDFParagraphTest >> setUp [ self doc generate ] + +{ #category : #tests } +PDFParagraphTest >> testDimensions [ + + self assert: paragraph dimension equals: 160mm@60mm +] + +{ #category : #tests } +PDFParagraphTest >> testOrigin [ + + self assert: paragraph from equals: 10 mm @ 10 mm +]