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 28, 2024
1 parent fbe9069 commit 9328a9b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 42 deletions.
2 changes: 1 addition & 1 deletion src/DiscOrDance-Model-Tests/DDAuthorTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ DDAuthorTest >> testAddActiveChannel [

{ #category : #test }
DDAuthorTest >> testAddSentMessage [
"this method checks if addSentMessages works without initializing the array"
"this method checks if addSentMessages works without initializing the array of messages"

| aDDAuthor aDDMessageMock|
aDDAuthor := DDAuthor new.
Expand Down
41 changes: 0 additions & 41 deletions src/DiscOrDance-Model-Tests/DDAutorshipEdgeTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,6 @@ Class {

{ #category : #test }
DDAutorshipEdgeTest >> testAuthor [
"This method checks if author's getter works without giving any input"

| aDDAutorshipEdge |
aDDAutorshipEdge := DDAutorshipEdge new.

self assert: aDDAutorshipEdge author equals: nil.
]

{ #category : #test }
DDAutorshipEdgeTest >> testAuthor2 [
"This method checks if author's setter and getter works given an input"

| aDDAutorshipEdge |
Expand All @@ -31,16 +21,6 @@ DDAutorshipEdgeTest >> testAuthor2 [

{ #category : #test }
DDAutorshipEdgeTest >> testMessage [
"This method checks if message's getter works without giving any input"

| aDDAutorshipEdge |
aDDAutorshipEdge := DDAutorshipEdge new.

self assert: aDDAutorshipEdge message equals: nil.
]

{ #category : #test }
DDAutorshipEdgeTest >> testMessage2 [
"This method checks if message's getter and setter works given an input"

| aDDAutorshipEdge |
Expand All @@ -49,21 +29,10 @@ DDAutorshipEdgeTest >> testMessage2 [
aDDAutorshipEdge message: 'autorshipEdge-message'.

self assert: aDDAutorshipEdge message equals: 'autorshipEdge-message'.

]

{ #category : #test }
DDAutorshipEdgeTest >> testNode1 [
"This method checks if node1's getter works without giving any input"

| aDDAutorshipEdge |
aDDAutorshipEdge := DDAutorshipEdge new.

self assert: aDDAutorshipEdge node1 equals: nil.
]

{ #category : #test }
DDAutorshipEdgeTest >> testNode1_2 [
"This method checks if node1's getter and setter works given an input"

| aDDAutorshipEdge |
Expand All @@ -76,16 +45,6 @@ DDAutorshipEdgeTest >> testNode1_2 [

{ #category : #test }
DDAutorshipEdgeTest >> testNode2 [
"This method checks if node2's getter works without giving any input"

| aDDAutorshipEdge |
aDDAutorshipEdge := DDAutorshipEdge new.

self assert: aDDAutorshipEdge node2 equals: nil.
]

{ #category : #test }
DDAutorshipEdgeTest >> testNode2_2 [
"This method checks if node2's getter and setter works without giving any input"

| aDDAutorshipEdge |
Expand Down

0 comments on commit 9328a9b

Please sign in to comment.