Skip to content

Commit

Permalink
Merge pull request #1770 from DataDog/xgouchet/RUM-1520/update_obsole…
Browse files Browse the repository at this point in the history
…te_logs_tests

RUM-1520 Remove obsolete integration tests
  • Loading branch information
xgouchet authored Dec 18, 2023
2 parents d29c752 + b679636 commit e609161
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 551 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.MediumTest
import com.datadog.android.core.allowThreadDiskReads
import org.assertj.core.api.Assertions.assertThat
import org.junit.After
import org.junit.Test
import org.junit.runner.RunWith
import java.io.File
Expand All @@ -20,6 +21,18 @@ import java.io.File
@MediumTest
@RunWith(AndroidJUnit4::class)
class StrictModeTest {

@After
fun tearDown() {
// Restore default StrictMode policy
StrictMode.setThreadPolicy(
ThreadPolicy.Builder()
.permitAll()
.penaltyLog()
.build()
)
}

@Test
fun M_disable_disk_read_checks_W_allowThreadDiskReads() {
// Given
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit e609161

Please sign in to comment.