From fbe906986ebfc12dff2a72a813f1c660d2e24692 Mon Sep 17 00:00:00 2001 From: LucoMoro Date: Tue, 27 Feb 2024 22:59:58 +0100 Subject: [PATCH] Delete getter tests --- .../DDAttachmentTest.class.st | 42 +------------------ 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/src/DiscOrDance-Model-Tests/DDAttachmentTest.class.st b/src/DiscOrDance-Model-Tests/DDAttachmentTest.class.st index 19b06f3..d976c83 100644 --- a/src/DiscOrDance-Model-Tests/DDAttachmentTest.class.st +++ b/src/DiscOrDance-Model-Tests/DDAttachmentTest.class.st @@ -8,7 +8,7 @@ Class { } { #category : #test } -DDAttachmentTest >> testFileName2 [ +DDAttachmentTest >> testFileName [ "This method checks if fileName's getter and setter works given an input" | aDDAttachment | @@ -21,16 +21,6 @@ DDAttachmentTest >> testFileName2 [ { #category : #test } DDAttachmentTest >> testFileSize [ - "This method checks if fileSize's getter works without giving any input" - - | aDDAttachment | - aDDAttachment := DDAttachment new. - - self assert: aDDAttachment fileSize equals: nil. -] - -{ #category : #test } -DDAttachmentTest >> testFileSize2 [ "This method checks if fileSize's getter and setter works given an input" | aDDAttachment | @@ -43,16 +33,6 @@ DDAttachmentTest >> testFileSize2 [ { #category : #test } DDAttachmentTest >> testId [ - "This method checks if id's getter works without giving any input" - - | aDDAttachment | - aDDAttachment := DDAttachment new. - - self assert: aDDAttachment id equals: nil. -] - -{ #category : #test } -DDAttachmentTest >> testId2 [ "This method checks if id's getter and setter works without giving any input" | aDDAttachment | @@ -65,16 +45,6 @@ DDAttachmentTest >> testId2 [ { #category : #test } DDAttachmentTest >> testProxyUrl [ - "This method checks if proxyUrl's getter works without giving any input" - - | aDDAttachment | - aDDAttachment := DDAttachment new. - - self assert: aDDAttachment proxyUrl equals: nil. -] - -{ #category : #test } -DDAttachmentTest >> testProxyUrl2 [ "This method checks if proxyUrl's getter and setter works given an input" | aDDAttachment | @@ -87,16 +57,6 @@ DDAttachmentTest >> testProxyUrl2 [ { #category : #test } DDAttachmentTest >> testUrl [ - "This method checks if url's getter works without giving any input" - - | aDDAttachment | - aDDAttachment := DDAttachment new. - - self assert: aDDAttachment url equals: nil. -] - -{ #category : #test } -DDAttachmentTest >> testUrl2 [ "This method checks if url's getter and setter works without giving any input" | aDDAttachment |