From 8ef774dcf516484c4499801716724500e608b273 Mon Sep 17 00:00:00 2001 From: jordanmontt Date: Wed, 28 Feb 2024 11:09:20 +0100 Subject: [PATCH] Added tag for tests classes. Deleted unused variable in the tests --- .../IllAbstractExporterTest.class.st | 5 +++-- .../IllAllocationSiteExporterTest.class.st | 5 +++-- .../IllFinalizationExporterTest.class.st | 5 +++-- src/IllimaniProfiler-Tests/IllMockGCMonitor.class.st | 8 +++----- src/IllimaniProfiler-Tests/IllMockProfiler.class.st | 5 +++-- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/src/IllimaniProfiler-Tests/IllAbstractExporterTest.class.st b/src/IllimaniProfiler-Tests/IllAbstractExporterTest.class.st index 1419811..03d410e 100644 --- a/src/IllimaniProfiler-Tests/IllAbstractExporterTest.class.st +++ b/src/IllimaniProfiler-Tests/IllAbstractExporterTest.class.st @@ -6,8 +6,9 @@ Class { 'mockProfiler', 'mockGCMonitor' ], - #category : 'IllimaniProfiler-Tests', - #package : 'IllimaniProfiler-Tests' + #category : 'IllimaniProfiler-Tests-Exporters', + #package : 'IllimaniProfiler-Tests', + #tag : 'Exporters' } { #category : 'testing' } diff --git a/src/IllimaniProfiler-Tests/IllAllocationSiteExporterTest.class.st b/src/IllimaniProfiler-Tests/IllAllocationSiteExporterTest.class.st index c232cc6..33f6d1e 100644 --- a/src/IllimaniProfiler-Tests/IllAllocationSiteExporterTest.class.st +++ b/src/IllimaniProfiler-Tests/IllAllocationSiteExporterTest.class.st @@ -1,8 +1,9 @@ Class { #name : 'IllAllocationSiteExporterTest', #superclass : 'IllAbstractExporterTest', - #category : 'IllimaniProfiler-Tests', - #package : 'IllimaniProfiler-Tests' + #category : 'IllimaniProfiler-Tests-Exporters', + #package : 'IllimaniProfiler-Tests', + #tag : 'Exporters' } { #category : 'asserting' } diff --git a/src/IllimaniProfiler-Tests/IllFinalizationExporterTest.class.st b/src/IllimaniProfiler-Tests/IllFinalizationExporterTest.class.st index 788850b..cb44a32 100644 --- a/src/IllimaniProfiler-Tests/IllFinalizationExporterTest.class.st +++ b/src/IllimaniProfiler-Tests/IllFinalizationExporterTest.class.st @@ -4,8 +4,9 @@ An IllFinalizationExporterTest is a test class for testing the behavior of IllFi Class { #name : 'IllFinalizationExporterTest', #superclass : 'IllAbstractExporterTest', - #category : 'IllimaniProfiler-Tests', - #package : 'IllimaniProfiler-Tests' + #category : 'IllimaniProfiler-Tests-Exporters', + #package : 'IllimaniProfiler-Tests', + #tag : 'Exporters' } { #category : 'asserting' } diff --git a/src/IllimaniProfiler-Tests/IllMockGCMonitor.class.st b/src/IllimaniProfiler-Tests/IllMockGCMonitor.class.st index 90bfe8f..ed33421 100644 --- a/src/IllimaniProfiler-Tests/IllMockGCMonitor.class.st +++ b/src/IllimaniProfiler-Tests/IllMockGCMonitor.class.st @@ -1,11 +1,9 @@ Class { #name : 'IllMockGCMonitor', #superclass : 'Object', - #instVars : [ - 'allocations' - ], - #category : 'IllimaniProfiler-Tests', - #package : 'IllimaniProfiler-Tests' + #category : 'IllimaniProfiler-Tests-Exporters', + #package : 'IllimaniProfiler-Tests', + #tag : 'Exporters' } { #category : 'exporting' } diff --git a/src/IllimaniProfiler-Tests/IllMockProfiler.class.st b/src/IllimaniProfiler-Tests/IllMockProfiler.class.st index 5aa291e..89671f7 100644 --- a/src/IllimaniProfiler-Tests/IllMockProfiler.class.st +++ b/src/IllimaniProfiler-Tests/IllMockProfiler.class.st @@ -5,8 +5,9 @@ Class { 'allocations', 'gcMonitor' ], - #category : 'IllimaniProfiler-Tests', - #package : 'IllimaniProfiler-Tests' + #category : 'IllimaniProfiler-Tests-Exporters', + #package : 'IllimaniProfiler-Tests', + #tag : 'Exporters' } { #category : 'accessing' }