Artifact 3c3d45f2002a8466f2c3fa86128020b0a40ba094f350b1c903da9a9e68b03100:
- File
src/test/OTTestCase.m
— part of check-in
[10f006be37]
at
2024-02-05 20:42:09
on branch objfwtest
— Add ObjFWTest
So far, it only discovers all tests and runs them and doesn't do much
else. (user: js, size: 651) [annotate] [blame] [check-ins using] [more...]
/* * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #import "OTTestCase.h" @implementation OTTestCase: OFObject - (void)setUp { } - (void)tearDown { } @end