Home
last modified time | relevance | path

Searched refs:containsStringInNetLog (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/cronet/components/cronet/android/test/javatests/src/org/chromium/net/
H A DCronetUrlRequestContextTest.java1217 assertThat(containsStringInNetLog(file1, mUrl404)).isTrue(); in testNetLogContainEventsFromAllLiveEngines()
1218 assertThat(containsStringInNetLog(file1, mUrl500)).isTrue(); in testNetLogContainEventsFromAllLiveEngines()
1219 assertThat(containsStringInNetLog(file2, mUrl404)).isTrue(); in testNetLogContainEventsFromAllLiveEngines()
1220 assertThat(containsStringInNetLog(file2, mUrl500)).isTrue(); in testNetLogContainEventsFromAllLiveEngines()
1278 assertThat(containsStringInNetLog(logFile1, mUrl404)).isTrue(); in testBoundedFileNetLogContainEventsFromAllLiveEngines()
1279 assertThat(containsStringInNetLog(logFile1, mUrl500)).isTrue(); in testBoundedFileNetLogContainEventsFromAllLiveEngines()
1280 assertThat(containsStringInNetLog(logFile2, mUrl404)).isTrue(); in testBoundedFileNetLogContainEventsFromAllLiveEngines()
1281 assertThat(containsStringInNetLog(logFile2, mUrl500)).isTrue(); in testBoundedFileNetLogContainEventsFromAllLiveEngines()
1658 return containsStringInNetLog(logFile, "\"bytes\""); in hasBytesInNetLog()
1661 private boolean containsStringInNetLog(File logFile, String content) throws Exception { in containsStringInNetLog() method in CronetUrlRequestContextTest