Index: test/java-internal/java/beans/beancontext/BeanContextSupportTest.java
===================================================================
--- test/java-internal/java/beans/beancontext/BeanContextSupportTest.java (revision 426109)
+++ test/java-internal/java/beans/beancontext/BeanContextSupportTest.java (working copy)
@@ -414,23 +414,23 @@
* Test method vetoableChange() with PropertyChangeEvent parameter.
*
*/
- public void testVetoableChangePropertyChangeEvent() {
- /** @todo: not implemented yet in the class * */
- // Create BeanContext instance
- BeanContextSupport sup = new BeanContextSupport();
- // sup.vetoableChange(null);
- }
+// public void testVetoableChangePropertyChangeEvent() {
+// /** @todo: not implemented yet in the class * */
+// Create BeanContext instance
+// BeanContextSupport sup = new BeanContextSupport();
+// sup.vetoableChange(null);
+// }
/**
* Test method propertyChange() with PropertyChangeEvent parameter.
*
*/
- public void testPropertyChangePropertyChangeEvent() {
- /** @todo: not implemented yet in the class * */
- // Create BeanContext instance
- BeanContextSupport sup = new BeanContextSupport();
- // sup.propertyChange(null);
- }
+// public void testPropertyChangePropertyChangeEvent() {
+// /** @todo: not implemented yet in the class * */
+// // Create BeanContext instance
+// BeanContextSupport sup = new BeanContextSupport();
+// // sup.propertyChange(null);
+// }
/**
* Test method isEmpty() with no parameters.
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextChildSupportTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextChildSupportTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextChildSupportTest.java (working copy)
@@ -51,6 +51,8 @@
private static class MockBeanContextChildSupport extends
BeanContextChildSupport {
+ static final long serialVersionUID = -8602521752077435319L;
+
public BeanContext lastInitBeanContext = null;
public BeanContext lastReleaseBeanContext = null;
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextEventTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextEventTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextEventTest.java (working copy)
@@ -28,6 +28,8 @@
public class BeanContextEventTest extends TestCase {
private static class MockBeanContextEvent extends BeanContextEvent {
+
+ static final long serialVersionUID = -5990761357871915928L;
/**
* @param bc
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextMembershipEventTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextMembershipEventTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextMembershipEventTest.java (working copy)
@@ -39,6 +39,8 @@
private static class MockBeanContextMembershipEvent extends
BeanContextMembershipEvent {
+ static final long serialVersionUID = -4761911723636245515L;
+
/**
* @param bc
* @param changes
@@ -66,7 +68,7 @@
public void testBeanContextMembershipEvent_NullParam() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -108,7 +110,7 @@
*/
public void testBeanContextMembershipEventBeanContextCollection() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -130,7 +132,7 @@
public void testSize_Collection() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -149,7 +151,7 @@
public void testContains_Collection() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -176,7 +178,7 @@
public void testToArray_Collection() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -203,7 +205,7 @@
public void testIterator_Collection() {
BeanContext ctx = new MockBeanContext();
- Collection c = new ArrayList();
+ Collection c = new ArrayList();
c.add("1");
c.add("2");
c.add("3");
@@ -229,7 +231,7 @@
}
public void testSerialization() throws IOException, ClassNotFoundException {
- ArrayList things = new ArrayList();
+ ArrayList things = new ArrayList();
things.add("1");
things.add("2");
things.add("3");
@@ -243,7 +245,7 @@
}
public void testSerialization_Compatibility() throws Exception {
- ArrayList things = new ArrayList();
+ ArrayList things = new ArrayList();
things.add("1");
things.add("2");
things.add("3");
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceAvailableEventTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceAvailableEventTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceAvailableEventTest.java (working copy)
@@ -37,6 +37,8 @@
private static class MockBeanContextServiceAvailableEvent extends
BeanContextServiceAvailableEvent {
+
+ static final long serialVersionUID = 796722290390289532L;
/**
* @param bcs
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceRevokedEventTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceRevokedEventTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServiceRevokedEventTest.java (working copy)
@@ -36,6 +36,8 @@
private static class MockBeanContextServiceRevokedEvent extends
BeanContextServiceRevokedEvent {
+
+ static final long serialVersionUID = -705194281645674622L;
/**
* @param bcs
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServicesSupportTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServicesSupportTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextServicesSupportTest.java (working copy)
@@ -57,6 +57,8 @@
public static class MockBeanContextServicesSupport extends
BeanContextServicesSupport {
+ static final long serialVersionUID = -5521269152428572350L;
+
public MethodInvocationRecords records;
public MockBeanContextServicesSupport() {
Index: test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextSupportTest.java
===================================================================
--- test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextSupportTest.java (revision 426109)
+++ test/java/org/apache/harmony/beans/tests/java/beans/beancontext/BeanContextSupportTest.java (working copy)
@@ -70,6 +70,8 @@
public class BeanContextSupportTest extends TestCase {
private static class MockBeanContextSupport extends BeanContextSupport {
+
+ static final long serialVersionUID = -4165267256277214588L;
public transient MethodInvocationRecords records;
@@ -836,7 +838,7 @@
support.add(c1);
support.add(c2);
support.add(c3);
- ArrayList l = new ArrayList();
+ ArrayList