Skip to content

Instantly share code, notes, and snippets.

解剖 Kotlin ほんとはJavaなんだろ

Kotlinはジャバである

目次

  • null許容型の正体
  • 関数型の正体
  • ラムダ式の正体
  • 拡張関数の正体
@saxophone
saxophone / ResultTestActivity.java
Last active October 13, 2020 14:43
Use Android Espresso to test that your Activity finishes with the expected result.
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import static android.support.test.InstrumentationRegistry.getInstrumentation;
import static org.hamcrest.MatcherAssert.assertThat;