Artifact 616318c30f59c1eaf3943356ceb88c12d8f600c4a0d0287df1175072051b4604:
- File tests/OFPlugin/TestPlugin/TestPlugin.m — part of check-in [16f1025d5c] at 2009-04-20 01:55:07 on branch trunk — Improve tests. (user: js, size: 441) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008 - 2009 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of libobjfw. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "TestPlugin.h" @implementation TestPlugin - (int)test: (int)num { return num * 2; } @end id init_plugin() { return [TestPlugin new]; }