/core/test/com/google/inject/SerializationTest.java

https://code.google.com/ · Java · 63 lines · 34 code · 11 blank · 18 comment · 0 complexity · 16d22fd1462db65ef88f947aa97837d9 MD5 · raw file

  1. /**
  2. * Copyright (C) 2008 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.inject;
  17. import static com.google.inject.Asserts.assertSimilarWhenReserialized;
  18. import junit.framework.AssertionFailedError;
  19. import junit.framework.TestCase;
  20. import java.io.IOException;
  21. import java.io.Serializable;
  22. import java.util.List;
  23. /**
  24. * @author jessewilson@google.com (Jesse Wilson)
  25. */
  26. public class SerializationTest extends TestCase {
  27. public void testAbstractModuleIsSerializable() throws IOException {
  28. Asserts.reserialize(new MyAbstractModule());
  29. }
  30. static class MyAbstractModule extends AbstractModule implements Serializable {
  31. protected void configure() {}
  32. }
  33. public void testCreationExceptionIsSerializable() throws IOException {
  34. assertSimilarWhenReserialized(createCreationException());
  35. }
  36. private CreationException createCreationException() {
  37. try {
  38. Guice.createInjector(new AbstractModule() {
  39. protected void configure() {
  40. bind(List.class);
  41. }
  42. });
  43. throw new AssertionFailedError();
  44. } catch (CreationException e) {
  45. return e;
  46. }
  47. }
  48. static class A {
  49. @Inject B b;
  50. }
  51. static class B {}
  52. }