Normalize application naming in ./Tests/Manual

Ensure:
* CamelCase, ending in Test
* No hyphens, spaces, underscores or other non-alpha characters

Updated application directory names.
Update Jakefiles.
This commit is contained in:
David Richardson
2026-09-08 17:47:30 -06:00
parent e3cb2cd6db
commit 4784a1a102
564 changed files with 686 additions and 2258 deletions
@@ -0,0 +1,33 @@
/*
* NotificationStatistics.j
* CPTextViewDelegateAndNotifications
*
* Created by Martin Carlberg on December 22, 2017.
* Copyright 2017, Oops AB All rights reserved.
*/
@import <Foundation/CPObject.j>
@implementation NotificationStatistics : CPObject {
CPString name @accessors;
CPUInteger order @accessors;
CPUInteger count @accessors;
}
+ (id)notificationStatisticsWithName:(CPString)aName
{
return [[NotificationStatistics alloc] initWithName:aName];
}
- (id)initWithName:(CPString)aName
{
self = [super init];
if (self) {
[self setName: aName];
[self setOrder:0];
[self setCount:0];
}
return self;
}
@end