Skip to content

Commit

Permalink
Delete getter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LucoMoro committed Feb 27, 2024
1 parent 6056bd6 commit fbe9069
Showing 1 changed file with 1 addition and 41 deletions.
42 changes: 1 addition & 41 deletions src/DiscOrDance-Model-Tests/DDAttachmentTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -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 |
Expand All @@ -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 |
Expand All @@ -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 |
Expand All @@ -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 |
Expand Down

0 comments on commit fbe9069

Please sign in to comment.