override java final methods via reflection or other means? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:12:34Z http://stackoverflow.com/feeds/question/748362 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means 0 override java final methods via reflection or other means? zeroin23 2009-04-14T16:25:23Z 2009-04-15T11:30:34Z <p>This question arise while trying to write test cases. Foo is a class within the framework library which I dont have source access to.</p> <pre><code>public class Foo{ public final Object getX(){ ... } } </code></pre> <p>my applications will </p> <pre><code>public class Bar extends Foo{ public int process(){ Object value = getX(); ... } } </code></pre> <p>The unit test case is unable to initalize as I can't create a Foo object due to other dependencies. The BarTest throws a null pointer as value is null. </p> <pre><code>public class BarTest extends TestCase{ public testProcess(){ Bar bar = new Bar(); int result = bar.process(); ... } } </code></pre> <p>Is there a way i can use reflection api to set the getX() to non-final? or how should I go about testing? </p> http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748380#748380 3 Answer by Seb for override java final methods via reflection or other means? Seb 2009-04-14T16:31:36Z 2009-04-14T16:31:36Z <p>If your unit test case can't create Foo due to other dependencies, that might be a sign that you're not making your unit test right in the first place.</p> <p>Unit tests are meant to test under the same circumstances a production code would run, so I'd suggest recreating the same production environment inside your tests. Otherwise, your tests wouldn't be complete.</p> http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748413#748413 2 Answer by TofuBeer for override java final methods via reflection or other means? TofuBeer 2009-04-14T16:38:47Z 2009-04-14T16:38:47Z <p>Seb is correct, and just to ensure that you get an answer to your question, short of doing something in native code (and I am pretty sure that would not work) or modifying the bytecode of the class at runtime, and creating the class that overrides the method at runtime, I cannot see a way to alter the "finalness" of a method. Reflection will not help you here.</p> http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748471#748471 4 Answer by james for override java final methods via reflection or other means? james 2009-04-14T16:56:08Z 2009-04-14T16:56:08Z <p>you could create another method which you could override in your test:</p> <pre><code>public class Bar extends Foo { protected Object doGetX() { return getX(); } public int process(){ Object value = doGetX(); ... } } </code></pre> <p>then, you could override doGetX in BarTest.</p> http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/748768#748768 0 Answer by Cem Catikkas for override java final methods via reflection or other means? Cem Catikkas 2009-04-14T18:18:44Z 2009-04-14T18:18:44Z <p>If the variable returned by <code>getX()</code> is not <code>final</code> you can use the technique explained in <a href="http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods/34658#34658">What’s the best way of unit testing private methods?</a> for changing the value of the <code>private</code> variable through <code>Reflection</code>.</p> http://stackoverflow.com/questions/748362/override-java-final-methods-via-reflection-or-other-means/751273#751273 0 Answer by zeroin23 for override java final methods via reflection or other means? zeroin23 2009-04-15T11:30:34Z 2009-04-15T11:30:34Z <pre><code>public class Bar extends Foo{ public int process(){ Object value = getX(); return process2(value); } public int process2(Object value){ ... } } public class BarTest extends TestCase{ public testProcess(){ Bar bar = new Bar(); Mockobj mo = new Mockobj(); int result = bar.process2(mo); ... } } </code></pre> <p>what i did eventually was the above. it is a bit ugly... James solution is definitely much better than this... </p>