blob: e9793cb53b924392d86268b50012440921e82b67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
*
*/
package org.mozilla.javascript.tests;
import junit.framework.TestCase;
import org.mozilla.javascript.*;
/**
* See https://bugzilla.mozilla.org/show_bug.cgi?id=409702
* @author Norris Boyd
*/
public class Bug409702Test extends TestCase {
public static abstract class Test {
public Test() {
}
public abstract void a();
public abstract int b();
public static abstract class Subclass extends Test {
@Override
public final void a() {
}
}
}
public void testAdapter() {
final int value = 12;
String source =
"var instance = " +
" new JavaAdapter(" + getClass().getName() + ".Test.Subclass," +
"{ b: function () { return " + value + "; } });" +
"instance.b();";
Context cx = ContextFactory.getGlobal().enterContext();
try {
Scriptable scope = cx.initStandardObjects();
Object result = cx.evaluateString(scope, source, "source", 1, null);
assertEquals(new Integer(value), result);
} finally {
Context.exit();
}
}
}
|