// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.cronet_sample_apk;
import static com.google.common.truth.Truth.assertThat;
import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
/** TBD: Write more tests for the sample app */
@RunWith(AndroidJUnit4.class)
public class CronetSampleTest {
@Test
@SmallTest
public void testSimple() throws Exception {
assertThat(1).isEqualTo(1);
}
}