- jenkins-runner.sh (下にあるやつ)
- jenkins.plist (下にあるやつ)
- jenkins.war http://mirrors.jenkins-ci.org/war/latest/jenkins.war
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
casper = require('casper').create | |
verbose: true | |
logLevel: "debug" | |
clientScripts: ["../lib/jquery-1.7.1.min.js"] | |
pageSettings: [loadImages:false] | |
onError: -> | |
@echo arguments | |
#for i in [1..6] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "NSObject+CustomMethod.h" | |
typedef void(^SelectorBlock)(NSObject *responder); | |
@implementation NSObject (CustomMethod) | |
#pragma mark associative storage | |
- (NSObject *)spi_nextResponder | |
{ | |
NSObject *ao = objc_getAssociatedObject(self, _cmd); | |
if (ao) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyTestRunner extends RobolectricTestRunner { | |
public MyTestRunner(Class<?> testClass) throws InitializationError { | |
super(testClass); | |
} | |
@Override | |
protected AndroidManifest getAppManifest(Config config) { | |
System.setProperty("android.assets", "./src/test/assets"); | |
return super.getAppManifest(config); | |
} |