1 //
2 // Copyright (c) 2010-2018 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 using System;
8 using System.Collections.Generic;
9 using Antmicro.Renode.PlatformDescription.Syntax;
10 
11 namespace Antmicro.Renode.PlatformDescription
12 {
13     public class FakeInitHandler : IInitHandler
14     {
Execute(IInitable initable, IEnumerable<string> statements, Action<string> errorHandler)15         public void Execute(IInitable initable, IEnumerable<string> statements, Action<string> errorHandler)
16         {
17         }
18 
Validate(IInitable initable, out string message)19         public bool Validate(IInitable initable, out string message)
20         {
21             message = null;
22             return true;
23         }
24     }
25 }
26