PageRenderTime 120ms CodeModel.GetById 6ms RepoModel.GetById 1ms app.codeStats 0ms

/event/src/test/java/io/airlift/event/client/TestNullEventModule.java

https://gitlab.com/CORP-RESELLER/airlift
Java | 34 lines | 17 code | 2 blank | 15 comment | 0 complexity | 2b2eea0991e963c66cb3b3ac35e0992b MD5 | raw file
  1. /*
  2. * Copyright 2010 Proofpoint, 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 io.airlift.event.client;
  17. import com.google.inject.Guice;
  18. import com.google.inject.Injector;
  19. import org.testng.annotations.BeforeMethod;
  20. public class TestNullEventModule extends AbstractTestNullEventClient
  21. {
  22. @SuppressWarnings("deprecation")
  23. @BeforeMethod
  24. public void setup()
  25. throws Exception
  26. {
  27. Injector injector = Guice.createInjector(
  28. new NullEventModule()
  29. );
  30. eventClient = (NullEventClient) injector.getInstance(EventClient.class);
  31. }
  32. }