ExampleUnitTest.java 444 B

1234567891011121314151617
  1. package com.example.modifiermodule;
  2. import org.junit.Test;
  3. import static org.junit.Assert.*;
  4. /**
  5. * Example local unit test, which will execute on the development machine (host).
  6. *
  7. * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
  8. */
  9. public class ExampleUnitTest {
  10. @Test
  11. public void addition_isCorrect() {
  12. System.out.println(String.format("Hello, %s!", new String[]{"aaa"}.toString()));
  13. }
  14. }