Differences From Artifact [4612327517]:
- File
tests/test.m
— part of check-in
[620b9b2a30]
at
2012-11-24 11:56:58
on branch trunk
— Remove the IRCChannels class.
It was only overcomplicating things with no gain at all. Instead,
strings are used to describe channels now and the storage of users in a
channel is inside IRCConnection now. (user: js, size: 3965) [annotate] [blame] [check-ins using]
To Artifact [9f9c8d8d61]:
- File tests/test.m — part of check-in [e7f0831117] at 2016-05-07 11:21:37 on branch trunk — Adjust to ObjFW changes (user: js, size: 4012) [annotate] [blame] [check-ins using]
- File tests/tests.m — part of check-in [3bac4aa7d3] at 2016-05-07 11:58:33 on branch trunk — Add a proper build system (user: js, size: 4012) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
23 24 25 26 27 28 29 | #import <ObjFW/OFString.h> #import <ObjFW/OFApplication.h> #import <ObjFW/OFFile.h> #import "IRCConnection.h" #import "IRCUser.h" | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #import <ObjFW/OFString.h> #import <ObjFW/OFApplication.h> #import <ObjFW/OFFile.h> #import "IRCConnection.h" #import "IRCUser.h" @interface TestApp: OFObject <OFApplicationDelegate, IRCConnectionDelegate> @end OF_APPLICATION_DELEGATE(TestApp) @implementation TestApp - (void)applicationDidFinishLaunching { |
︙ | ︙ |