User Adrian - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:11:56Zhttp://stackoverflow.com/feeds/user/24468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814819/fastest-one-liner-way-to-print-xml-nodes-xpath-in-ruby/1815111#18151110Answer by Adrian for Fastest/One-liner way to print XML node's XPath in Ruby?Adrian2009-11-29T09:43:46Z2009-11-29T09:43:46Z<pre><code>node.path
</code></pre>
<p>You can find the full documentation of node here: <a href="http://nokogiri.rubyforge.org/nokogiri/Nokogiri/XML/Node.html" rel="nofollow">http://nokogiri.rubyforge.org/nokogiri/Nokogiri/XML/Node.html</a></p>
http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1813440#18134400Answer by Adrian for Adding non-escaped Ampersands to HTML with Nokogiri::XML::BuilderAdrian2009-11-28T19:06:09Z2009-11-28T19:06:09Z<p>If you define</p>
<pre><code> class Nokogiri::XML::Builder
def entity(code)
doc = Nokogiri::XML("<?xml version='1.0'?><root>&##{code};</root>")
insert(doc.root.children.first)
end
end
</code></pre>
<p>then this</p>
<pre><code> builder = Nokogiri::XML::Builder.new do |xml|
xml.span {
xml.text "I can has "
xml.entity 8665
xml.text " entity?"
}
end
puts builder.to_xml
</code></pre>
<p>yields</p>
<pre><code><?xml version="1.0"?>
<span>I can has &#x2022; entity?</span>
</code></pre>
<p> </p>
<p><strong>PS</strong> this a workaround only, for a clean solution please refer to the <code>libxml2</code> documentation (Nokogiri is built on libxml2) for more help. However, even these folks <a href="http://xmlsoft.org/entities.html" rel="nofollow">admit that handling entities can be quite ..err, cumbersome sometimes</a>.</p>
http://stackoverflow.com/questions/1771324/eclipse-as-an-ide-what-do-you-find-missing-as-a-beginner-in-java/1808469#18084699Answer by Adrian for Eclipse as an IDE - What do you find missing as a beginner in Java?Adrian2009-11-27T12:24:01Z2009-11-28T12:46:18Z<p>Missing in Eclipse are:</p>
<p>Software visualization, as for example System Complexity View <a href="http://www.inf.usi.ch/faculty/lanza/Downloads/Lanz03d.pdf" rel="nofollow">[Lanza 2003]</a></p>
<p>And also by Lanza, the Class Blueprint <a href="http://www.inf.usi.ch/faculty/lanza/Downloads/Duca05b.pdf" rel="nofollow">[Ducasse 2005]</a></p>
<blockquote>
<p><strong>Post Scriptum:</strong> Software visualization in Eclipse: X-Ray provides System Complexity View of Java projects, <a href="http://xray.inf.usi.ch/xray.php" rel="nofollow">http://xray.inf.usi.ch/xray.php</a> (via <a href="http://twitter.com/anjaguzzi/status/6115235170" rel="nofollow">@anjaguzzi</a> and <a href="http://stackoverflow.com/users/154306/paul-lammertsma">Paul Lammertsma</a>)</p>
<blockquote>
<p><img src="http://xray.inf.usi.ch/img/xraySystemComplexityView.png" alt="Software Visualization" title=""></p>
</blockquote>
</blockquote>
<p>And then collaborative filtering "other developers that edited this method before also edited" <a href="http://thomas-zimmermann.com/publications/files/zimmermann-icse-2004.pdf" rel="nofollow">[Zimmermann 2005]</a></p>
<p>And the collection of browsable examples, and autocompletion at the level of these examples. That is, for example if your write</p>
<pre><code>ByteBuffer buf = file.
</code></pre>
<p>and hit autocompletion it should search the codebase and the interwebs for examples that convert files to bytebuffers and insert that 10-20 lines there.</p>
<ul>
<li>Parseweb supports developers by recommending method invocation sequences that yield a required
destination data type from given input parameter types. <a href="http://doi.acm.org/10.1145/1453101.1453129" rel="nofollow">http://doi.acm.org/10.1145/1453101.1453129</a></li>
<li>Prospector supports developers by recommending method invocation sequences that yield a required
destination data type from given input parameter types.<a href="http://doi.acm.org/10.1145/1064978.1065018" rel="nofollow">http://doi.acm.org/10.1145/1064978.1065018</a></li>
<li>Strathcona provides source code examples and structural con-
text for the code fragment under development. <a href="http://lsmr.cpsc.ucalgary.ca/papers/holmes-icse-2005.pdf" rel="nofollow">http://lsmr.cpsc.ucalgary.ca/papers/holmes-icse-2005.pdf</a></li>
<li>Rascal recommends how and when to call the methods of objects from common libraries such as Java Swing, based on an analysis of existing classes. It uses collaborative filtering. <a href="http://dx.doi.org/10.1007/s10462-005-9012-8" rel="nofollow">http://dx.doi.org/10.1007/s10462-005-9012-8</a></li>
</ul>
<p>And of course also the feature that I can write a Unit test and then the IDE searches the interwebs for classes that pass the test. Yes, this can be done!</p>
<ul>
<li>CodeGenie is an Eclipse plugin that allows you to write unit tests and then uses the Sourcerer source code search engine to find passing classes. <a href="http://doi.acm.org/10.1145/1529282.1529384" rel="nofollow">http://doi.acm.org/10.1145/1529282.1529384</a></li>
<li>CodeConjurer which is based on Merobase also offers that feature, see <a href="http://dx.doi.org/10.1109/MS.2008.110" rel="nofollow">http://dx.doi.org/10.1109/MS.2008.110</a></li>
</ul>
<p>This list could go on and on, good starting points for more work are the proceedings of past</p>
<ul>
<li><a href="http://msr.uwaterloo.ca/msr2010/index.html" rel="nofollow">Conference on Mining Software Repositories (MSR)</a></li>
<li><a href="http://scg.unibe.ch/wiki/events/suite2010" rel="nofollow">Workshop on Search-driven Software Engineering (SUITE)</a></li>
<li><a href="http://sites.google.com/site/rsseresearch/rsse2010" rel="nofollow">Workshop on Recommendation Systems for Software Engineering (RSSE)</a></li>
</ul>
<p>which are all under the umbrella of the ICSE conference.</p>
http://stackoverflow.com/questions/1810383/pharo-gofer-can-it-fallback-to-local-package-cache-when-offline1Pharo Gofer, can it fallback to local package cache when offline?Adrian2009-11-27T19:39:51Z2009-11-27T21:33:21Z
<p>Can I tell <code>Gofer</code> to fall back to the local package cache when no internet is available?</p>
<p>For example such that I can use</p>
<pre><code>Gofer it
squeaksource: 'CodePhoo';
addPackage: 'CodePhoo';
load
</code></pre>
<p>to setup an image when offline on the train? (In that case we can be sure that the packages are in fact available locally from a previous image setup.)</p>
http://stackoverflow.com/questions/1802725/save-object-in-debug-and-than-use-it-as-stub-in-tests/1806327#18063270Answer by Adrian for Save object in debug and than use it as stub in tests.Adrian2009-11-27T00:56:36Z2009-11-27T00:56:36Z<p>I <em>do</em> love your idea, it's awesome!</p>
<p>I am not aware of a library that would offer that feature out of the box. You can try using <code>ObjectOutoutStream</code> and <code>ObjectInputStream</code> (ie the standard Java serialization) if your objects all implement <code>Seriablizable</code>. Typically they do not. In that case, you might have more luck using <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> or one of its friends.</p>
http://stackoverflow.com/questions/699707/what-happens-to-a-branch-of-an-os-project-covered-by-software-patents/1801306#18013060Answer by Adrian for What happens to a branch of an OS project covered by software patents?Adrian2009-11-26T02:55:16Z2009-11-26T02:55:16Z<p>Lars Bak told that (at least) the V8 Javascript VM can be used free of patent claims (personal communication after a talk of his at ETH Zurich in 2009).</p>
http://stackoverflow.com/questions/1800960/library-for-creating-animated-presentations/1801256#18012561Answer by Adrian for Library for Creating Animated PresentationsAdrian2009-11-26T02:33:40Z2009-11-26T02:33:40Z<p>I know some folks, including Turing Award winner Alan Kay, that use <a href="http://www.squeak.org/" rel="nofollow">Squeak</a> for presentations. Squeak is an interactive programming environment. It combines objects and all the pleasures of a modern language with the immediate feedback of what-you-see-is-what-you-get document editors.</p>
<p>I donnu if there are tutorials on building presentations with Squeak though.</p>
<p>Dan Ingall's <a href="http://research.sun.com/projects/lively/" rel="nofollow">Lively</a> might also be of interest for you.</p>
http://stackoverflow.com/questions/1801216/what-is-the-difference-between-multiple-dispatch-and-method-overloading/1801230#18012302Answer by Adrian for What is the difference between multiple dispatch and method overloading?Adrian2009-11-26T02:24:42Z2009-11-26T02:24:42Z<p>Method overloading is resolved at compile time.</p>
<p>Multiple dispatch is resolved at runtime.</p>
<p>When using double dispatch the called method depends on the actual type of receiver and arguments. Method overloading however, only allows the the called method to depends on the declared type of the parameters. Why? Java binds method calls at compile time with their full signature (early binding). The full signature includes all parameter types, hence when the actual type of an argument differs at runtime (polymoprhism), overloading does not work as you might expect!</p>
<pre><code>void add(Foo o) { ... }
void add(Bar o) { ... }
void client() {
Foo o = new Bar();
add(o); // calls add(Foo) not add(Bar)!
}
</code></pre>
<p>using multiple dispatch however</p>
<pre><code>void add(Foo o) { o.dispatch(this); }
void add(Bar o) { o.dispatch(this); }
void client() {
Foo o = new Bar();
add(o); // calls #dispatch as defined in Bar!
}
</code></pre>
<p>Things might slightly differ in Scala, though the general distinction should be the same as presented here in all programming languages.</p>
http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1801219#18012191Answer by Adrian for JUnit: Enable assertions in class under testAdrian2009-11-26T02:20:13Z2009-11-26T02:20:13Z<p>Alternatively, you may compile your code such that assertions <strong>cannot</strong> be turned off. Under Java 6, you may use <a href="http://scg.unibe.ch/staff/adriankuhn/javacompiler/forceassertions" rel="nofollow">"fa.jar – Force assertion check even when not enabled"</a>, a small hack of mine.</p>
http://stackoverflow.com/questions/1485039/nokogiri-how-to-select-an-element-with-its-text-content-via-css-not-xpath/1790927#17909270Answer by Adrian for nokogiri : how to select an element with its text content via CSS not xpath?Adrian2009-11-24T15:47:49Z2009-11-24T15:47:49Z<p>Cannot be done with pure CSS, you'll have to mix it with Ruby code</p>
<pre><code> doc = Nokogiri::HTML("<p>A paragraph <ul><li>Item 1</li><li>Apple</li><li>Orange</li></ul></p>")
p doc.css('li').select{|li|li.text =~ /Apple/}
</code></pre>
http://stackoverflow.com/questions/1583590/xpath-how-do-you-select-the-second-text-node-specific-text-node/1790893#17908930Answer by Adrian for Xpath: how do you select the second text node (specific text node)Adrian2009-11-24T15:43:31Z2009-11-24T15:43:31Z<p>If the strings are separated with <code><br></code> it works</p>
<pre><code> doc = Nokogiri::HTML("""<html>
apple
<br>
orange
<br>
drugs
</html>""")
p doc.xpath('//text()[2]') #=> orange
</code></pre>
http://stackoverflow.com/questions/1762687/how-get-innerhtml-of-ruby-nokogiri-nodeset-unescaped/1790854#17908540Answer by Adrian for How get inner_html of ruby Nokogiri NodeSet unescaped?Adrian2009-11-24T15:37:57Z2009-11-24T15:37:57Z<p>Anything not okey with?</p>
<pre><code>nodeset.inner_html
</code></pre>
http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1790803#17908031Answer by Adrian for Object vs static method design Adrian2009-11-24T15:29:46Z2009-11-24T15:29:46Z<p>If you go for static you should avoid WET names.</p>
<p>WET stands for write everything twice, thus instead of <code>StreamCopier.copy</code> call it</p>
<pre><code>Copy.stream(in,out)
</code></pre>
<p>that way your code reads more like English.</p>
http://stackoverflow.com/questions/1368900/unit-testing-is-it-bad-form-to-have-unit-test-calling-other-unit-tests/1781858#17818580Answer by Adrian for Unit Testing - Is it bad form to have unit test calling other unit testsAdrian2009-11-23T08:46:52Z2009-11-23T08:46:52Z<p>To offer a counter point: </p>
<blockquote>
<p>I strongly believe that well designed unit test <strong>should</strong> depend on one another!</p>
</blockquote>
<p>Of course, that makes sense only if the testing framework is aware of these dependencies such that it can stop running dependent test when a dependency fails. Even better, such a framework can pass the fixture from test to test, such that can build upon a growing and extending fixture instead of rebuilding it from scratch for each single test. Of course, caching is done to take care no side-effects are introduced when more than one test depends from the same example.</p>
<p>We implemented this idea in the <a href="http://scg.unibe.ch/jexample" rel="nofollow">JExample extension for JUnit</a>. There is no C# port yet, though there are ports for <a href="http://github.com/chneukirchen/rexample" rel="nofollow">Ruby</a> and <a href="http://www.squeaksource.com/phexample" rel="nofollow">Smalltalk</a> and ... the <a href="http://sebastian-bergmann.de/archives/826-Test-Dependencies-in-PHPUnit-3.4.html" rel="nofollow">most recent release of PHPUnit picked up both our ideas: dependencies and fixture reuse</a>. </p>
<p>PS: <a href="http://prystash.blogspot.com/2009/10/jexample-defining-dependencies-between.html" rel="nofollow">folks are also using it for Groovy</a>.</p>
http://stackoverflow.com/questions/1776119/how-do-i-copy-and-paste-an-error-message-in-pharo/1780394#17803941Answer by Adrian for How do I copy and paste an error message in Pharo?Adrian2009-11-22T23:24:24Z2009-11-22T23:24:24Z<p>The quickest way I know is <code>window menu > change title > ctrl-c</code>, alas this opens yet another window. The window menu is the second icon on the top left (if you use Squeak standard theme).</p>
<p>Might be cool to add a <code>copy error message</code> button to the error dialog though. Contributions are welcome!</p>
http://stackoverflow.com/questions/1770401/how-to-find-the-current-stack/1772342#17723421Answer by Adrian for How to find the current stack?Adrian2009-11-20T18:17:18Z2009-11-20T18:17:18Z<p>Well, in fact, the issue aint that simple: <code>thisContext</code> can be a quite expensive operation, compared to like a message send. </p>
<p>In Visualworks Smalltalk, stack access is <em>extermly</em> expensive because it uses the native C-stack and thus any access to <code>thisContext</code> must reify the entire C-Stack into <em>causally connected</em> Smalltalk objects. That is, for each C stack frame a Smalltalk object is to be created (including possible JIT deoptimization) and furthermore all changes to these objects must be reflected back to the C stack. </p>
<p>In Pharo (and Squeak, for that matter) it is less awkward, since it uses Smalltalk objects for the stack. But still the object pool which caches stack frames is flushed upon each call. (Yes, other than eg in Java, pooling objects does improve performance in Squeak ... welcome back to the 90ies :)</p>
http://stackoverflow.com/questions/1738068/a-collection-that-represents-a-concatenation-of-two-collections-in-java/1770311#17703111Answer by Adrian for A collection that represents a concatenation of two collections in JavaAdrian2009-11-20T13:04:01Z2009-11-20T13:04:01Z<p>There is not, but writing it yourself should be straight forward</p>
<pre><code>package ch.akuhn.util;
import java.util.Iterator;
import java.util.NoSuchElementException;
public class Concat {
public static <T> Iterable<T> all(final Iterable<T>... iterables) {
return new Iterable<T>() {
@Override
public Iterator<T> iterator() {
return new Iterator<T>() {
Iterator<Iterable<T>> more = Arrays.asList(iterables).iterator();
Iterator<T> current = more.hasNext() ? more.next().iterator() : null;
@Override
public boolean hasNext() {
if (current == null) return false;
if (current.hasNext()) return true;
current = more.hasNext() ? more.next().iterator() : null;
return this.hasNext();
}
@Override
public T next() {
if (!hasNext()) throw new NoSuchElementException();
return current.next();
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
};
}
};
}
}
</code></pre>
<p>And then</p>
<pre><code>for (Object each: Concat.all(collection,whatever,etcetera,...)) {
// ...
}
</code></pre>
<p>Just wrote this code here, compile at your own risk!</p>
<p>PS, <em>if you gonna write unit tests for this class, send 'em to me.</em></p>
http://stackoverflow.com/questions/1769778/migrating-from-sunit-to-phexample/1770183#17701832Answer by Adrian for Migrating from SUnit to PhexampleAdrian2009-11-20T12:32:10Z2009-11-20T12:32:10Z<p>Concerning the expectation matchers, there is a series of rewrite rules on the class side of <code>PhexMatcher</code>. This screencast explains how to use RB's rewrite engine: <a href="http://www.lukas-renggli.ch/blog/ob-rb-3" rel="nofollow">Code Critics in OB (OB Screencast 3)</a>.</p>
<p>First use these rules</p>
<pre><code>RBParseTreeRewriter new
replace: 'self assert: [ `@expression ]' with: 'self assert: `@expression';
replace: 'self deny: `@expression' with: 'self assert: `@expression not';
yourself.
</code></pre>
<p>Then use these rules</p>
<pre><code>RBParseTreeRewriter new
replace: 'self assert: `@value = `@expected' with: '`@value should = `@expected';
replace: 'self assert: `@value ~= `@expected' with: '`@value should not = `@expected';
replace: 'self assert: `@value > `@expected' with: '`@value should > `@expected';
replace: 'self assert: `@value < `@expected' with: '`@value should < `@expected';
replace: 'self assert: `@value >= `@expected' with: '`@value should >= `@expected';
replace: 'self assert: `@value <= `@expected' with: '`@value should <= `@expected';
replace: 'self assert: (`@value isKindOf: `@type)' with: '`@value should beKindOf: `@type';
replace: 'self assert: `@expression isNil' with: '`@expression should be isNil';
replace: 'self assert: `@expression notNil' with: '`@expression should be notNil';
replace: 'self assert: `@expression `test not' with: '`@expression should not be `test'
when: [:node | node arguments first receiver selector matchesRegex: '(is|has|not).+|atEnd' ];
replace: 'self assert: `@expression `test' with: '`@expression should be `test'
when: [:node | node arguments first selector matchesRegex: '(is|has|not).+|atEnd' ];
replace: 'self assert: (`@collection includes: `@element) not' with: '`@collection should not be includes: `@element';
replace: 'self assert: (`@collection includes: `@element)' with: '`@collection should be includes: `@element';
yourself.
</code></pre>
<p>Concerning the introduction of dependencies between test, you have to rewrite your tests by Hand. For JExample there is <a href="http://scg.unibe.ch/wiki/projects/archive/JUnit2JExample" rel="nofollow">JUnit2JExample</a> but alas there is not automagic migration for Smalltalk (yet). </p>
<p><hr></p>
<p>PS: if you are using the latest Pharo image you must use OB and revert the OB-Refactory package to get scoped rewrite rules working. Just execute</p>
<pre><code>SystemBrowser default: OBSystemBrowserAdaptor.
Gofer new
wiresong: 'ob';
addPackage: 'OB-Refactory';
revert
</code></pre>
http://stackoverflow.com/questions/1500907/smalltalk-compilers-that-target-either-java-net-or-ruby/1755465#17554650Answer by Adrian for Smalltalk compilers that target either Java, .NET or RubyAdrian2009-11-18T11:44:43Z2009-11-18T11:44:43Z<p>As it seems, James Ladd is working on a Smalltalk for the JVM, but it has not yet been releases. </p>
<p>You can follow the project on twitter though: <a href="https://twitter.com/smalltalkjvm" rel="nofollow">https://twitter.com/smalltalkjvm</a></p>
http://stackoverflow.com/questions/1641400/smalltalk-inserting-a-tab-character-visual-works/1755432#17554320Answer by Adrian for Smalltalk - Inserting a TAB character (Visual Works)Adrian2009-11-18T11:39:32Z2009-11-18T11:39:32Z<p>Its shortest to use macro expansion:</p>
<pre><code>info := '<1s><T><2s>' expandMacrosWith: one with: two
</code></pre>
http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2ee/1755385#17553851Answer by Adrian for Where can I find good unit testing resources for EJB and J2EE?Adrian2009-11-18T11:30:23Z2009-11-18T11:30:23Z<p><a href="http://wernli.nine.ch/web/guest/45" rel="nofollow">EJB out-of-container testing</a> by Erwann "Airone" Wernli</p>
http://stackoverflow.com/questions/1593967/source-code-is-in-jdk-1-4-and-junit-test-cases-in-jdk-1-5/1634380#16343801Answer by Adrian for Source code is in JDK 1.4 and JUnit test cases in JDK 1.5Adrian2009-10-27T23:48:36Z2009-10-27T23:48:36Z<p>No need for Java 5, as it seems James Carr backported Mockito to Java 4, see <a href="http://blog.james-carr.org/2009/10/01/using-mockito-with-junit3" rel="nofollow">http://blog.james-carr.org/2009/10/01/using-mockito-with-junit3</a>. I never used that backport personally though.</p>
http://stackoverflow.com/questions/1541220/how-can-i-name-tuples/1545535#15455350Answer by Adrian for How can I name Tuples?Adrian2009-10-09T19:02:57Z2009-10-09T19:02:57Z<p>What about "Tuple of 10", etc?</p>
http://stackoverflow.com/questions/477550/is-there-a-way-to-access-an-iteration-counter-in-javas-for-each-loop/1491331#14913310Answer by Adrian for Is there a way to access an iteration-counter in Java's for-each loop?Adrian2009-09-29T08:45:30Z2009-09-29T08:45:30Z<p>There is another way.</p>
<p>Given that you write your own <code>Index</code> class and a static method that returns an <code>Iterable</code> over instances of this class you can </p>
<pre><code>for (Index<String> each: With.index(stringArray)) {
each.value;
each.index;
...
}
</code></pre>
<p>Where the implementation of <code>With.index</code> is something like</p>
<pre><code>class With {
public static <T> Iterable<Index<T>> index(final T[] array) {
return new Iterable<Index<T>>() {
public Iterator<Index<T>> iterator() {
return new Iterator<Index<T>>() {
index = 0;
public boolean hasNext() { return index < array.size }
public Index<T> next() { return new Index(array[index], index++); }
...
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1479873/how-to-remove-the-junit4-from-eclipse-test-runner/1491293#14912933Answer by Adrian for How to remove the Junit4 from eclipse test runnerAdrian2009-09-29T08:36:14Z2009-09-29T08:36:14Z<p>You <strong>can</strong> run an individual testmethod with Junit 4. Just right-click on the method in the outline and choose "run with Junit".</p>
http://stackoverflow.com/questions/1451496/does-junit4-testclasses-require-a-public-no-arg-constructor/1476831#14768310Answer by Adrian for Does JUnit4 testclasses require a public no arg constructor?Adrian2009-09-25T11:40:14Z2009-09-25T11:40:14Z<p>Non-static inner classes have a hidden constructor that takes the outer class as argument. If your inner classes dont share state with the outer classes, just make them <code>static</code>.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/303531#3035316Answer by Adrian for Coding in Other (Spoken) LanguagesAdrian2008-11-19T21:58:48Z2009-09-25T11:33:05Z<p>You mean?</p>
<pre><code>wenn (i < größe) {
wähle
fall 1:
drucke »Guten Tag!«
anderenfalls:
drucke »Nein, danke«
} sonst {
drucke »Gern geschehen«
}
</code></pre>
<p>Its mind boggling.</p>
<p>IMHO the non-English speaker are even in the advantage. Programming lingo and our natural language are separat. Whereas you English speakers overload native terms with technical terms. Doesn't this lead to dangerous confusions or missunderstandings sometimes?</p>
http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1449599#14495990Answer by Adrian for Testing for multiple exceptions with JUnit 4 annotationsAdrian2009-09-19T21:36:04Z2009-09-19T21:47:03Z<p>This is not possible with the annotation.</p>
<p>With JUnit 4.7 you can use the new <code>ExpectedException</code> rule</p>
<pre><code>public static class HasExpectedException {
@Interceptor
public ExpectedException thrown= new ExpectedException();
@Test
public void throwsNothing() {
}
@Test
public void throwsNullPointerException() {
thrown.expect(NullPointerException.class);
throw new NullPointerException();
}
@Test
public void throwsNullPointerExceptionWithMessage() {
thrown.expect(NullPointerException.class);
thrown.expectMessage("happened?");
throw new NullPointerException("What happened?");
}
}
</code></pre>
<p>More see</p>
<ul>
<li><a href="http://greenbar.saff.net/?p=17" rel="nofollow">JUnit 4.7: Interceptors: expected exceptions</a></li>
<li><a href="http://greenbar.saff.net/?p=18" rel="nofollow">Rules in JUnit 4.7</a></li>
</ul>
<p><hr /></p>
<p>If updating to JUnit 4.7 is not possible for you, you have to write a bare unit test of the form</p>
<pre><code>public test() {
try {
methodCall(); // should throw Exception
fail();
}
catch (Exception ex) {
assert((ex instanceof A) || (ex instanceof B) || ...etc...);
...
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1416624/invoking-shell-commands-from-squeak-or-pharo/1449520#14495200Answer by Adrian for Invoking shell commands from Squeak or PharoAdrian2009-09-19T21:04:59Z2009-09-19T21:04:59Z<p>Shell support in Squeak/Pharo is pretty limited. <a href="http://scg.unibe.ch/wiki/projects/bachelorsprojects/coral" rel="nofollow">There are plans to get this improved</a>, you're contributions are welcome.</p>
http://stackoverflow.com/questions/1334686/graphviz-break-flat-but-sparsely-connected-graph-into-multiple-rows0Graphviz: break flat but sparsely connected graph into multiple rows?Adrian2009-08-26T13:27:46Z2009-09-08T09:34:07Z
<p>Howto break a flat but sparsely connected graphviz graph into multiple rows? </p>
<p>Graphviz yields a graph of about 4 ranks, but over 9000 nodes wide. However since the graph is sparsely connected we could break it in to rows, for example each 1000 nodes, and thus make it fit on nine rows one page. How can this be done?</p>
<p>Not looking for unflatten, but rather something like line breaks in a text editor (is it clear what I am looking for?).</p>
<p><strong>Edit:</strong> <a href="http://www.iam.unibe.ch/~akuhn/d/choco-old%5Fversion.pdf" rel="nofollow">PDF with example graph here</a></p>
http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1813440#1813440Comment by Adrian on Adding non-escaped Ampersands to HTML with Nokogiri::XML::BuilderAdrian2009-11-29T09:37:27Z2009-11-29T09:37:27ZOops, I mistook 8665 for 8226!
Entity is the proper name for <code>&thing;</code> sequences.
<code>&bull;</code> should be okay, it's the official name of that entity in HTML.
<code><!ENTITY bull CDATA "&#8226;" -- bullet, =black small circle, u+2022 ISOpub --></code> see <a href="http://www.w3.org/TR/WD-html40-970708/sgml/entities.html" rel="nofollow">w3.org/TR/WD-html40-970708/…</a>http://stackoverflow.com/questions/1798468/svn-not-working-in-eclipseComment by Adrian on SVN not working in EclipseAdrian2009-11-28T01:09:55Z2009-11-28T01:09:55Z+1 for "and I learnt that I should Never Ever update a software which works fine," true enough with Eclipse!http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1410254#1410254Comment by Adrian on Testing for multiple exceptions with JUnit 4 annotationsAdrian2009-11-27T20:22:34Z2009-11-27T20:22:34Z@Brain - I cannot, it complains "Vote to old to be changed, unless this answer is edited"http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence/28282#28282Comment by Adrian on Equation (expression) parser with precedence?Adrian2009-11-26T02:50:33Z2009-11-26T02:50:33ZI must admit that my examples given in the blog post are getting left-recursion wrong, ie a - b - c evaluates to (a - (b -c)) instead of ((a -b) - c). Actually, that reminds me of adding a todo that I should fix the blog posts.http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1790803#1790803Comment by Adrian on Object vs static method design Adrian2009-11-25T11:05:56Z2009-11-25T11:05:56Z@jonow it would. In fact this is they way I organize all my helper methods. <code>Any.satisfy</code>, <code>All.notNull</code> etc. Of course (unless you have partial classes as in C#) this assumes a closed world, as it might not be given in some public projects. http://stackoverflow.com/questions/1447879/confused-about-when-to-throw-an-exception/1447971#1447971Comment by Adrian on Confused about when to throw an exceptionAdrian2009-11-23T13:27:07Z2009-11-23T13:27:07ZDesign by contract for the win!http://stackoverflow.com/questions/146989/style-question-writing-this-before-instance-variable-and-methods-good-or-bad/146995#146995Comment by Adrian on Style question: Writing "this." before instance variable and methods: good or bad idea?Adrian2009-10-29T21:26:37Z2009-10-29T21:26:37Z+1 for pointing out the issue of syntax coloring!http://stackoverflow.com/questions/1507999/opposite-of-abstractor/1508013#1508013Comment by Adrian on Opposite of "Abstractor"Adrian2009-10-02T17:21:24Z2009-10-02T17:21:24Z"serializer"/"deserializer"http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1410254#1410254Comment by Adrian on Testing for multiple exceptions with JUnit 4 annotationsAdrian2009-09-19T21:42:29Z2009-09-19T21:42:29ZSorry for downvoting, it happened by accident ... stackoverflow wont let me change my vote unless you edit your post. http://stackoverflow.com/questions/1444314/how-can-i-make-my-junit-tests-run-in-random-order/1444333#1444333Comment by Adrian on How can I make my JUnit tests run in random order?Adrian2009-09-19T21:27:03Z2009-09-19T21:27:03Z@lutz I guess because you countered with another question without answering OP's question http://stackoverflow.com/questions/1185619/cant-install-gems-that-depend-on-hoe/1186551#1186551Comment by Adrian on Can't install gems that depend on hoeAdrian2009-09-19T20:53:58Z2009-09-19T20:53:58ZFirst 1.3.1 and then latest, worked for me to update the rubygems that ship with Leopard OSX.http://stackoverflow.com/questions/1334686/graphviz-break-flat-but-sparsely-connected-graph-into-multiple-rows/1334886#1334886Comment by Adrian on Graphviz: break flat but sparsely connected graph into multiple rows?Adrian2009-08-27T11:26:18Z2009-08-27T11:26:18ZThanks for the pointer! But as far as I see I cannot put a subgraph below another without a third one to align them. And also, I would have to do this manually, ie having to know the connected components in advance and decide manually which one to put on the same row. I would rather like to have something that uses <code>dot</code> to align the subgraphs and then <code>neato</code> to layout all subgraphs.http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1080192#1080192Comment by Adrian on Why do pythonistas call the current reference "self" and not "this"?Adrian2009-08-26T13:41:29Z2009-08-26T13:41:29ZNot to forget self, the language :)http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/303531#303531Comment by Adrian on Coding in Other (Spoken) LanguagesAdrian2009-08-16T13:07:27Z2009-08-16T13:07:27ZRight, fixed! .http://stackoverflow.com/questions/810692/looking-for-modern-java-threading-concurrent-programming-book/810703#810703Comment by Adrian on Looking for Modern Java Threading / Concurrent programming BookAdrian2009-08-07T13:01:48Z2009-08-07T13:01:48ZExcellent read!