Skip to content

Commit

Permalink
Merge 991018f into 794a064
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianKleissl committed Jun 29, 2020
2 parents 794a064 + 991018f commit 03e6035
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testClassVariableCapitzlization

self assertAllZero: (self lint: #smallLintClassVariableCapitalization)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoInstanceVariableCapitalization

self assertAllFalse: (self lint: #instanceVariableCapitalizationRule:)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoSendsAddOrRemoveToExternalCollection

self assertAllZero: (self lint: #smallLintCollectionMessagesToExternalObject)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoTemporaryVariableCapitalization

self assertAllZero: (self lint: #smallLintSizeCheck)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoToDoDoesntUseACollection

self assertAllZero: (self lint: #toDoCollectRule:)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoToDoLoopAlsoIncrementsACounter

self assertAllZero: (self lint: #smallLintToDoWithIncrement)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoUnnecessarySizeCheck

self assertAllZero: (self lint: #smallLintTemporaryVariableCapitalization)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoUseOfOrsInsteadOfASearchingLiteral

self assertAllZero: (self lint: #smallLintSearchingLiteral)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Intention Revealing
testNoWhileTrueInsteadOfToDo

self assertAllZero: (self lint: #smallLintWhileTrue)
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"assertAllZero:" : "MK 6/19/2020 19:20",
"findTestObjects" : "mas 6/19/2020 21:21",
"lint:" : "MK 6/18/2020 17:10",
"testClassVariableCapitzlization" : "MK 6/29/2020 17:39",
"testLongMethodsWithoutEmptyLines" : "MK 6/19/2020 19:20",
"testNoAssignmentWithoutEffect" : "MK 6/28/2020 12:18",
"testNoBlockImmediatelyEvaluated" : "MK 6/28/2020 12:18",
Expand All @@ -15,6 +16,7 @@
"testNoComplexMethods" : "MK 6/19/2020 19:23",
"testNoDataClass" : "mas 6/19/2020 21:43",
"testNoGodClass" : "mas 6/19/2020 21:43",
"testNoInstanceVariableCapitalization" : "MK 6/29/2020 17:44",
"testNoInstanceVariableNotReadAndWritten" : "MK 6/28/2020 12:18",
"testNoMessagesSentButNotImplemented" : "MK 6/19/2020 19:18",
"testNoMethodEquivalentDefinedInSuperclass" : "MK 6/28/2020 12:18",
Expand All @@ -24,12 +26,19 @@
"testNoOverridesASpecialMessage" : "MK 6/19/2020 19:19",
"testNoRefusedParentBequest" : "MK 6/19/2020 19:30",
"testNoSameStatementsAtEndOfIfTrueOrIfFalseBlocks" : "MK 6/28/2020 12:19",
"testNoSendsAddOrRemoveToExternalCollection" : "MK 6/29/2020 17:46",
"testNoSendsUnknownMessageToGlobal" : "MK 6/19/2020 19:19",
"testNoSubclassResponsibilityNotDefined" : "MK 6/19/2020 19:20",
"testNoSuperclassCallRequired" : "MK 6/19/2020 19:19",
"testNoTemporaryVariableCapitalization" : "MK 6/29/2020 17:46",
"testNoTemporaryVariableNotReadAndWritten" : "MK 6/28/2020 12:19",
"testNoToDoDoesntUseACollection" : "MK 6/29/2020 17:52",
"testNoToDoLoopAlsoIncrementsACounter" : "MK 6/29/2020 17:50",
"testNoUnnecassaryEqualsTrue" : "MK 6/28/2020 12:19",
"testNoUnnecessarySizeCheck" : "MK 6/29/2020 17:47",
"testNoUnreferencedVariables" : "MK 6/28/2020 12:19",
"testNoUseOfOrsInsteadOfASearchingLiteral" : "MK 6/29/2020 17:48",
"testNoVariableReferencedOnce" : "MK 6/28/2020 12:20",
"testNoVariableUsedButNotDefinedAnywhere" : "MK 6/19/2020 19:19",
"testNoWhileTrueInsteadOfToDo" : "MK 6/29/2020 17:50",
"testVariableNotReferenced" : "MK 6/19/2020 19:20" } }

0 comments on commit 03e6035

Please sign in to comment.