blob: e0d8fbc6ca54ac090fa46a79a35eba030ec43fc9 [file] [log] [blame]
package com.xtremelabs.robolectric.shadows;
import android.webkit.JsPromptResult;
import com.xtremelabs.robolectric.WithTestDefaultsRunner;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.assertNotNull;
@RunWith(WithTestDefaultsRunner.class)
public class JsPromptResultTest {
@Test
public void shouldConstruct() throws Exception {
JsPromptResult result = ShadowJsPromptResult.newInstance();
assertNotNull(result);
}
}