コード例 #1
0
ファイル: StandardLibrary.cs プロジェクト: 5l1v3r1/Aphid
 private static void Print(AphidInterpreter interpreter, object message) =>
 interpreter.WriteOut(message != null ?
                      message.ToString() + Environment.NewLine :
                      Environment.NewLine);
コード例 #2
0
ファイル: StandardLibrary.cs プロジェクト: 5l1v3r1/Aphid
 private static void PrintFormatted(
     AphidInterpreter interpreter,
     string format,
     params object[] args) => interpreter.WriteOut(string.Format(format + Environment.NewLine, args));
コード例 #3
0
 public void WriteOut([PexAssumeUnderTest] AphidInterpreter target, string text)
 {
     target.WriteOut(text);
     // TODO: add assertions to method AphidInterpreterTest.WriteOut(AphidInterpreter, String)
 }