Jeff Hui
Jeff Hui
The Swift API is alpha because: - [ ] Fox's (cedar) test suite currently cannot test Swift. - [ ] It does not cover all of the objective-c API. -...
It would be great for `FOXFrequency` to also shrink by the order of the generator: ``` objc FOXFrequency(@[@[@1, FOXInteger()], @[@1, FOXString()]]); ``` This generator should shrink towards `@0`, even if...
FOXBind should prefer shrinking first values. But it seems to shrink more arbitrarily. Needs more investigation. Drawing from memory. ``` objc id generator = FOXBind(FOXInteger(), ^id (id num1){ return FOXBind(FOXInteger(),...
Each API call is assumed atomic. - [x] Add Parallel Testing to CLI & CI (to fix CI failures) - [x] Automate providing the FoxlingCompiler Plugin for Releases. - [x]...
A temporal model keeps track of time to allow verification of sequences of multiple async calls. Research: - Erlang QuickCheck has this model that is used to test ejabberd
The following stacktrace is printed for every time the the file system fires modified event (and nose re-runs): Error in sys.exitfunc: Traceback (most recent call last): File "/usr/lib/python2.6/atexit.py", line 24,...
Goals: - don't use inheritance (extract common functionality b/t this and the reflective mapper). - it's public API should be similar (but inverted?) to the ReflectiveMapper
It would be cool to have this as a NSDateFormatter alternative. The only problem are all the date format string constants would need to be changed... Reference: http://www.objc.io/issue-9/string-localization.html > "Parsing...
for `lowerCamelCase` to `UpperCamelCase` conversions and vice versa.
Various mapper ideas: ``` {red: 255, green: 255, blue: 255} {red: 255, green: 255, blue: 255, alpha: 255} {hue: 255, saturation: 255, brightness: 255, alpha: 255} "#aabbcc" "aabbcc" "#aabbccdd" "aabbccdd"...