Skip to content

Instantly share code, notes, and snippets.

View activedecay's full-sized avatar

chunk activedecay

View GitHub Profile
@jmarceli
jmarceli / README.md
Last active October 31, 2019 09:46
React errors explained

1

You will get one of these:

Uncaught (in promise) TypeError: Cannot read property 'toUpperCase' of undefined(…)

ReactCompositeComponent.js:870 Uncaught TypeError: Cannot read property 'displayName' of undefined

if you try to:

@searls
searls / AddressInputQueue.java
Created March 10, 2011 14:41
An example of stubbing with Mockito (with TestNG)
package com.pillartechnology.mail;
public class AddressInputQueue {
public String next() {
return null; //TODO: not implemented yet.
}
}