Home
last modified time | relevance | path

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

/tools/loganalysis/javatests/com/android/loganalysis/parser/
DBugreportParserTest.java230 assertTrue(bugreport.getCommandLine().isEmpty()); in testParse_command_line()
234 assertEquals(1, bugreport.getCommandLine().size()); in testParse_command_line()
235 assertEquals("value", bugreport.getCommandLine().get("key")); in testParse_command_line()
239 assertEquals(2, bugreport.getCommandLine().size()); in testParse_command_line()
240 assertEquals("value1", bugreport.getCommandLine().get("key1")); in testParse_command_line()
241 assertEquals("value2", bugreport.getCommandLine().get("key2")); in testParse_command_line()
246 assertEquals(2, bugreport.getCommandLine().size()); in testParse_command_line()
247 assertEquals("value=withequals", bugreport.getCommandLine().get("key1")); in testParse_command_line()
248 assertEquals("", bugreport.getCommandLine().get("key2")); in testParse_command_line()
252 assertEquals(3, bugreport.getCommandLine().size()); in testParse_command_line()
[all …]
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java83 public CommandLineItem getCommandLine() { in getCommandLine() method in BugreportItem