/testability-explorer/src/test/java/com/google/test/metric/EndToEndTest.java

http://testability-explorer.googlecode.com/ · Java · 15 lines · 7 code · 3 blank · 5 comment · 0 complexity · c41bdfcfb376581b9b12baebfab1a3f2 MD5 · raw file

  1. // Copyright 2008 Google Inc. All Rights Reserved.
  2. package com.google.test.metric;
  3. import junit.framework.TestCase;
  4. /**
  5. * Run the actual testability explorer on itself. This is the largest integration test we have.
  6. * @author alexeagle@google.com (Alex Eagle)
  7. */
  8. public class EndToEndTest extends TestCase {
  9. public void testTestabilityExplorer() throws Exception {
  10. Testability.main("com.google.test.metric");
  11. }
  12. }