Thomas Wang

Results 4 issues of Thomas Wang

Test case: ``` @Test public void testCompletionOrdering1() { DefaultCompletionProvider provider = new DefaultCompletionProvider(); final Completion c1 = new FunctionCompletion(provider, "add", "int"); final Completion c2 = new VariableCompletion(provider, "indx", "int"); final...

Test case: ``` @Test public void testCompletionRemoval() { final DefaultCompletionProvider provider1 = new DefaultCompletionProvider(); final ArrayList box1 = new ArrayList(); final Completion c1 = new BasicCompletion(provider1, "BAAA"); final Completion c2...

Test case below. The test fails at the second set of checks. ``` /* * 12/14/2016 * * TestDefaultCompletionProvider.java - test basic completion provider implementation. * * This library is...

Rust standard libray's version of Mutex has a useful feature of mutex poisoning. If a mutex owning thread panics, then the mutex is marked as poisoned so that other threads...