active questions tagged ocunit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T20:33:39Zhttp://stackoverflow.com/feeds/tag/ocunithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902323/iphone-unit-testing-tdd-ocunit-vs-google-tool-box1[iPhone] unit testing, TDD : OCUnit VS Google Tool Boxunknown (google)2009-12-14T17:34:44Z2009-12-15T11:07:58Z
<p>Hi,</p>
<p>I'm trying to choose between OCUnit and Google Tool Box, do you have any preferences, would recommend one or the other, why ?
I would be very interested to hear about your experiences with any of the 2.</p>
<p>The main problem i have with both of them is the managment of crashes in tested methods (ex: BAD ACCESS)
None of them was able to tell me in what class the crash occured !!!</p>
<p>With Google Tool Box i can see which test suite was being run but not the test case (how are you supposed to do when your test suite has 50 test cases ?)</p>
<p>With OCUnit i can at least see what test case in what test suite caused the crash.</p>
<p>Here is the kind of message i have with GTB :</p>
<pre><code>Executed 0 tests, with 0 failures (0 unexpected) in 0.000 (0.000) seconds
Test Suite 'LogicTests' started at 2009-12-14 18:03:15 +0100
/Users/admin/Documents/Tests/GTBTest/RunIPhoneUnitTest.sh: line 122: 688 Segmentation fault "$TARGET_BUILD_DIR/$EXECUTABLE_PATH" -RegisterForSystemEvents
Command /bin/sh failed with exit code 139
</code></pre>
<p>I can see that it's it the test suite 'LogicTests' that originated the crash but that's all.</p>
<p>With OCunit here is the message for the same error :</p>
<pre><code>Test Suite 'LogicTests' started at 2009-12-14 17:51:26 +0100
Test Case '-[LogicTests testFail]' started.
/Developer/Tools/RunPlatformUnitTests.include: line 415: 536 Segmentation fault "${THIN_TEST_RIG}" "${OTHER_TEST_FLAGS}" "${TEST_BUNDLE_PATH}"
</code></pre>
<p>At least with OCUnit i can track what test case was being run and eventually debug it (but that could take a very long time without any class and line number info...)</p>
<p>How do you deal with these problems ?</p>
<p>Thanks in advance.</p>
<p>PS: here is how to reproduce the problem, it's very simple :</p>
<p>Just create a class with a method that crashes when it's called (which happens all the time when you're doing TDD) :</p>
<pre><code>- (void) crashMethod {
NSMutableArray *crashArray;
[crashArray addObject:[NSObject new]];
}
</code></pre>
<p>And then create a test case that calls this methods :</p>
<pre><code>- (void) testFail {
ClassToTest *test = [[ClassToTest alloc] init];
[test crashMethod];
[test release];
}
</code></pre>
<p>Thanks in advance,
Vincent</p>
http://stackoverflow.com/questions/1894820/using-ocunit-in-xcode-for-iphone-projects1Using OCUnit in Xcode for iPhone projects?Greg Maletic2009-12-12T21:55:04Z2009-12-12T23:03:55Z
<p>After configuring my iPhone app for unit testing, I belatedly noticed this warning in the documentation:</p>
<blockquote>
<p>iPhone OS Unit Testing Support: Unit
tests are not supported for iPhone
applications.</p>
</blockquote>
<p>As some of the other Xcode documentation regarding unit testing is out of date...is this still the case?</p>
http://stackoverflow.com/questions/1325406/how-do-i-link-my-executable-to-my-test-bundle-when-debugging-test-using-otest0How do I link my executable to my test bundle when debugging test using otest?Lawrence Johnston2009-08-25T00:07:16Z2009-11-27T01:00:01Z
<p>I'm using kind of a hybrid of Chris Hanson's excellent Xcode unit testing guide.</p>
<p>My program is a (command-line) application (which precludes using the executable itself to run the tests), but I need to be able to debug my unit tests.</p>
<p>So what I have is as follows:</p>
<p>Create test bundle and tests.
Create new test target, set bundle loader and test host.
Add main target as direct dependency for test target.
Create new custom executable otest.
Add <code>-SenTest self</code>, <code>MyTestBundle.octest</code>, arguments.
Add <code>DYLD_LIBRARY_PATH</code> and <code>DYLD_FRAMEWORK_PATH</code> variables in environment.</p>
<p>My issue is that when I now try to debug a test by running the executable, the classes referenced by the tests are not available. For instance if I write a test for class Foo, as soon as I instantiate Foo in my test I get a bad access exception.</p>
<p>If I add Foo.m to the test target this goes away, but I'd rather not have to add every class I want to test to the test taget as well as the application target.</p>
<p>I assume I just need to add a variable of some sort telling otest where to find the classes in my main executable, but I don't know what the name of this argument would be.</p>
<p>Can somebody point me in the right direction for fixing this?</p>
http://stackoverflow.com/questions/1785064/should-you-still-do-memory-management-in-a-unit-test-ocunit0Should you still do memory management in a unit test? (OCUnit)Hua-Ying2009-11-23T18:30:42Z2009-11-25T13:49:57Z
<p>Hi!</p>
<p>Should I still bother with releasing objects in a unit test?</p>
<p>I noticed in Apple's "iPhoneUnitTests" sample project objects are [[object alloc] init] in the setup method but never released anywhere in the unit test?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1596368/iphone-application-testing-and-core-location4iPhone: Application Testing and Core Locationariel2009-10-20T18:08:48Z2009-11-10T11:28:18Z
<p>I'm trying to implement Application Tests as described <a href="http://developer.apple.com/IPhone/library/documentation/Xcode/Conceptual/iphone%5Fdevelopment/135-Unit%5FTesting%5FApplications/unit%5Ftesting%5Fapplications.html" rel="nofollow" title="here">here</a>. So far, so good, but i fail to test, for instance, the location of the device using Core Location. I have added the appropriate Framework to the Target, and have initiated the update of location, but i have no clue of how to wait for the location to be loaded, the test suite just ends before the second thread finish. Please help me to find a way to test this sort of things. </p>
http://stackoverflow.com/questions/1568992/does-ocunit-allow-application-tests-to-be-run-on-the-iphone-simulator0Does OCUnit allow application tests to be run on the iPhone Simulator?Veejayus2009-10-14T21:03:55Z2009-10-30T16:38:52Z
<p>Apple's "iPhone Development Guide" suggests on page 62 that "Because application tests run only on a device, you can also use these tests to perform hardware testing...".</p>
<p>I'd like to run my OCUnit test cases in the simulator as well -- but haven't figured out how to do that. Is it possible? Or do I have to use Google's toolkit instead? <a href="http://code.google.com/p/google-toolbox-for-mac/" rel="nofollow">http://code.google.com/p/google-toolbox-for-mac/</a></p>
http://stackoverflow.com/questions/1092396/iphone-unit-testing-xcode0iPhone Unit Testing XCodeGary2009-07-07T13:39:16Z2009-10-14T16:38:17Z
<p>I've been following Apple's documentation on writing unit tests for the iPhone, and out of the box, the routine doesn't seem to work. I'm not sure I understand where the unit test is going to get the reference to the application delegate. </p>
<p>My Dependencies are like the following:
My_Program_target -> UnitTesting_target -> UnitTests_bundle</p>
<p>The following code snippet is where the assert fails. I'm very familiar with CPPUNIT, but I'm having trouble understanding how this crosses over.</p>
<pre><code>- (void) testAppDelegate {
id yourApplicationDelegate = [[UIApplication sharedApplication] delegate];
STAssertNotNil(yourApplicationDelegate, @"UIAppliation failed to find the AppDelegate");
}
</code></pre>
<p>Additionally:</p>
<p>I've decided in my approach to do a logic test. I'm trying to read in an XML file, but I'm not having luck resolving the bundle, which will provide me with the path by which I can access my file. I've tried pasting in the path output by allBundles, but that path doesn't seem to work either. Below is what I'm executing in my test (you can see the debug statement I'm using to output the paths of the bundles):</p>
<pre><code>NSLog(@"BundlePaths: %@", [NSBundle allBundles]);
NSString * path = [[NSBundle bundleWithPath:@"$(TARGET_BUILD_DIR)"] pathForResource:@"SimpleTestList" ofType:@"plist"];
STAssertNotNil(path, @"Bundle Location couldn't find the file specified");
</code></pre>
<p>Essentially, the assert on path is not successful, but I'm not sure what to put for the path or directory to reference my unitTest bundle that I've told to copy the bundle resources. Calling [NSBundle mainBundle] does not work either.</p>
http://stackoverflow.com/questions/1385568/why-doesnt-gcov-report-any-lines-being-covered-by-my-unit-tests4Why doesn't gcov report any lines being covered by my unit tests?Graham Lee2009-09-06T12:30:46Z2009-10-12T17:35:34Z
<p>I am using Xcode 3.2 on 10.6, with the shipped version of gcov and default GCC compiler (both version 4.2.1). I have created a dependent Cocoa unit test bundle which is injected into my app, and followed Apple's documentation on <a href="http://developer.apple.com/mac/library/qa/qa2007/qa1514.html" rel="nofollow">setting up a gcov-instrumented build configuration</a> - based on the Debug configuration which doesn't have any compiler optimisations enabled.</p>
<p>When I build the test bundle with this 'Gcov-instrumented' configuration, the app launches and the tests are injected and run. Also the coverage statistics files are generated at:</p>
<blockquote>
<p><code>build/<AppTarget>.build/Gcov-instrumented/<AppTarget>.build/Objects-normal/x86_64/<object>.gcda</code></p>
<p><code>build/<AppTarget>.build/Gcov-instrumented/<AppTarget>.build/Objects-normal/x86_64/<object>.gcno</code></p>
</blockquote>
<p>So far so good. I know the tests are really being run because if I insert failures then the test suite fails as expected. Unfortunately, gcov reports that no lines of the objects have been covered by the tests! Every line is reported as 0 coverage. I've searched here and at the Apple mailing list archives, and can't find anyone with a similar problem. I expect I'm missing something - but what is it?</p>
http://stackoverflow.com/questions/1352971/how-do-i-run-a-subset-of-ocunit-tests-in-xcode0How do I run a subset of OCUnit tests in XCodenall2009-08-30T02:59:34Z2009-09-25T22:48:34Z
<p>I have a suite of unit tests that I use before checking in my project. However, very often it's the case that only one of them finds some regression in the code. In these cases I'd like to only run that particular unit test while debugging the failure. I haven't found any way to do this in XCode. Is it possible?</p>
http://stackoverflow.com/questions/1364811/testing-view-controllers-iphone1Testing View Controllers --iPhoneAdrian Sarli2009-09-01T21:48:01Z2009-09-02T15:29:13Z
<p>My question is 2-fold. 1. Can I use OCUnit to test View Controllers. If so, how should I do it? If not, is there another Testing Kit I can use?</p>
http://stackoverflow.com/questions/947365/cant-build-ocunit-in-gnustep-win32-environment-objc-runtime-h-not-found0Can't build OCUnit in GNUstep/Win32 environment - objc/runtime.h not foundBuggieboy2009-06-03T21:28:53Z2009-08-29T18:00:02Z
<p>I'm trying to unit test objective-c classes built in the MinGW shell. Since OCUnit has been embraced by Apple for XCode, it seems that the developer, Sen:te, has now focused on that. So, the last source distro that claims to support GNUstep is v27.</p>
<p>Anyway, I downloaded the v27 tarball and tried to build in MinGW. You first have to build the Sen:te foundation classes using a file called SenFoundation\GSmakefile.</p>
<p>It goes along nicely for awhile until I get:</p>
<pre><code> Compiling file SenInvocationEnumerator.m ...
In file included from SenInvocationEnumerator.m:10:
SenInvocationEnumerator.h:13:25: warning: objc/runtime.h: No such file or directory
</code></pre>
<p>As far as I can tell there is no such file in my GNUstep tree or anywhere else on my drive.</p>
<p>Has anybody had success with this, or at least is aware of where objc/runtime.h comes from?</p>
http://stackoverflow.com/questions/531561/iphone-unit-tests-hang-fail-to-call-applicationdidfinishlaunching1iPhone Unit Tests Hang; Fail to Call -applicationDidFinishLaunching:TALlama2009-02-10T09:05:19Z2009-08-24T17:14:46Z
<p>I have unit tests set up for my iPhone project built using the <a href="http://code.google.com/p/google-toolbox-for-mac/wiki/iPhoneUnitTesting" rel="nofollow">Google Toolkit for Mac</a> framework on top of OCUnit. I have a dependent project called "Unit Tests" that builds and runs the tests as needed.</p>
<p>But then it all stopped working, for no reason that I can fathom. Suddenly, my "Unit Tests" executable launches and just sits there, waiting, forever. It never gets as far as the Application Delegate's <code>-applicationDidFinishLaunching:</code> method, which is what calls the actual unit tests. Inserting an NSLog into the delegate's <code>-init</code> method tells me that that method gets called, but the application never "finishes" launching.</p>
<p>If I modify the shell script that runs the "Unit Tests" executable and take out the <code>-RegisterForSystemEvents</code> argument, the executable exists immediately (it runs no tests) and gives me the following message:</p>
<blockquote>
<p>Terminating since there is no system event server.<br />
(Run the EventPump or pass the argument "-RegisterForSystemEvents" if you want to run without SpringBoard.</p>
</blockquote>
<p>Since it terminates when I remove that argument, I'm curious what exactly that argument does and how, since it would seem to be causing the hang. But since no tests run without it, I need to determine how I can get it working again. However, Google doesn't provide links to anything relevant to the current situation, and nothing in the dev docs is helpful.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1098550/unit-testing-private-methods-in-xcode3Unit Testing private methods in XcodeAbizern2009-07-08T14:46:00Z2009-07-12T20:17:50Z
<p>I'm trying out test driven development in a toy project. I can get the tests working for the public interface to my classes (although I'm still on the fence because I'm writing more testing code than there is in the methods being tested).</p>
<p>I tend to use a lot of private methods becuase I like to keep the public interfaces clean; however, I'd still like to use tests on these methods.</p>
<p>Since Cocoa is a dynamic language, I can still call these private methods, but i get warnings in my tests that my class may not respond to these methods (although it clearly does). Since I like to compile with no warnings here are my questions:</p>
<ol>
<li>How do i turn off these warnings in Xcode?</li>
<li>Is there something else I could do to turn off these warnings?</li>
<li>Am I doing something wrong in trying 'white box' testing?</li>
</ol>
http://stackoverflow.com/questions/1103265/why-do-my-ocunit-tests-fail-with-code-1384Why do my OCUnit tests fail with "code 138"?Joe2009-07-09T11:21:00Z2009-07-12T14:47:49Z
<p>I'm currently trying to learn objective-c using XCode 3.1. I've been working on a small program and decided to add unit testing to it. </p>
<p>I followed the steps on the Apple Developer page - <a href="http://developer.apple.com/mac/articles/tools/unittestingwithxcode3.html" rel="nofollow">Automated Unit Testing with
Xcode 3 and Objective-C</a>. When I added my first test, it worked fine when the tests failed, but when I corrected the tests the build failed. Xcode reported the following error:</p>
<blockquote>
<p>error: Test host '/Users/joe/Desktop/OCT/build/Debug/OCT.app/Contents/MacOS/OCT' exited abnormally with code 138 (it may have crashed).</p>
</blockquote>
<p>Trying to isolate my error, I re-followed the steps from the Unit Test example above and the example worked. When I added a simplified version of my code and a test case, the error returned.</p>
<p>Here is the code I created:</p>
<p><strong>Card.h</strong></p>
<pre><code>#import <Cocoa/Cocoa.h>
#import "CardConstants.h"
@interface Card : NSObject {
int rank;
int suit;
BOOL wild ;
}
@property int rank;
@property int suit;
@property BOOL wild;
- (id) initByIndex:(int) i;
@end
</code></pre>
<p><strong>Card.m</strong></p>
<pre><code>#import "Card.h"
@implementation Card
@synthesize rank;
@synthesize suit;
@synthesize wild;
- (id) init {
if (self = [super init]) {
rank = JOKER;
suit = JOKER;
wild = false;
}
return [self autorelease];
}
- (id) initByIndex:(int) i {
if (self = [super init]) {
if (i > 51 || i < 0) {
rank = suit = JOKER;
} else {
rank = i % 13;
suit = i / 13;
}
wild = false;
}
return [self autorelease];
}
- (void) dealloc {
NSLog(@"Deallocing card");
[super dealloc];
}
@end
</code></pre>
<p><strong>CardTestCases.h</strong></p>
<pre><code>#import <SenTestingKit/SenTestingKit.h>
@interface CardTestCases : SenTestCase {
}
- (void) testInitByIndex;
@end
</code></pre>
<p><strong>CardTestCases.m</strong></p>
<pre><code>#import "CardTestCases.h"
#import "Card.h"
@implementation CardTestCases
- (void) testInitByIndex {
Card *testCard = [[Card alloc] initByIndex:13];
STAssertNotNil(testCard, @"Card not created successfully");
STAssertTrue(testCard.rank == 0,
@"Expected Rank:%d Created Rank:%d", 0, testCard.rank);
[testCard release];
}
@end
</code></pre>
http://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events4How do I trap OCUnit test pass/failure messages/events.orj2008-10-29T17:05:03Z2009-07-10T16:53:05Z
<p>I'm trying to use xcodebuild and OCUnit with my Continuous Integration server (<a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>). </p>
<p>JetBrains offers test observer implementations for boost::test and CppUnit that format test output in a way that TeamCity can interpret. I need to do something similar for OCUnit if I want to use it.</p>
<p>There appears to be a SenTestObserver class in OCUnit but I'm ignorant of how exactly it should be used, and the <a href="http://www.sente.ch/software/ocunit/" rel="nofollow">OCUnit homepage</a> doesn't seem to provide any documentation on the matter.</p>
http://stackoverflow.com/questions/1077737/ocunit-test-for-protocols-callbacks-delegate-in-objective-c2OCUnit test for protocols/callbacks/delegate in Objective-CN355A2009-07-03T04:14:49Z2009-07-10T14:53:46Z
<p>Using OCUnit, is there a way to test delegate protocols?</p>
<p>I'm trying this, which doesn't work.</p>
<pre><code>-(void) testSomeObjDelegate {
SomeObj obj = [[SomeObj alloc] initWithDelegate:self];
[obj executeMethod];
}
-(void) someObjDelegateMethod {
//test something here
}
</code></pre>
<p>I'm going to try calling the <code>obj</code> method on a different thread and have the test sleep until the delegate is called. It just seems like there should be an easier way to test this.</p>
http://stackoverflow.com/questions/1079735/how-to-run-octest-from-command-line-not-xcode0How to run OCTest from command-line, not XCodeJohn M2009-07-03T14:58:33Z2009-07-03T15:04:38Z
<p>XCode 3.1.2 using built-in OCTest unit testing.</p>
<p>I'm getting a crash when unit tests run. I want to run w/ a few extra environment variables (MallocCheckHeapStart, MallocCheckHeapEach, for example).</p>
<p>I'm a beginner with this and can't figure out how to run my app's OCTest unit tests from the command-line. Or alternatively, to convince XCode to set a few extra environment variables when it launches the unit tests.</p>
http://stackoverflow.com/questions/1070649/ocunit-nslog-and-xcode-3-11OCUnit, NSLog, and XCode 3.1sehugg2009-07-01T18:33:04Z2009-07-02T22:29:20Z
<p>I'd been using OCUnit (the default installation that comes with XCode) in XCode 3.0. I've been happy being able to run my tests and see the results in the Build Results window, as well as any NSLog() messages I output.</p>
<p>However, with XCode 3.1 the tests run fine, but I suddenly lose my NSLog() output. Anybody know where it went?</p>