Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/MonitorTests/
DFeaturesTests.cs22 var commandInteraction = new CommandInteractionEater(); in AutoLoadCommandTest()
24 monitor.Parse("help", commandInteraction); in AutoLoadCommandTest()
25 var contents = commandInteraction.GetContents(); in AutoLoadCommandTest()
32 var commandInteraction = new CommandInteractionEater(); in ShouldHandleNewExtensionsFromLoadedAssembly()
34 monitor.Parse("emulation GetSeed", commandInteraction); in ShouldHandleNewExtensionsFromLoadedAssembly()
35 monitor.Parse($"i @{file}", commandInteraction); in ShouldHandleNewExtensionsFromLoadedAssembly()
36 monitor.Parse("emulation GetMockString", commandInteraction); in ShouldHandleNewExtensionsFromLoadedAssembly()
37 var contentsAfter = commandInteraction.GetContents(); in ShouldHandleNewExtensionsFromLoadedAssembly()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DCommandInteractionEater.cs17 public CommandInteractionWrapper(ICommandInteraction commandInteraction) in CommandInteractionWrapper() argument
19 underlyingCommandInteraction = commandInteraction; in CommandInteractionWrapper()