Move OutputStandardOutputAndError test project with the other test projects.

Partial #1250
This commit is contained in:
Eric Erhardt 2016-02-09 16:51:02 -06:00
parent 5c3bc7f340
commit 10b6191b3e
5 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,19 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics;
namespace TestApp
{
public class Program
{
public static void Main(string[] args)
{
Console.Out.WriteLine("** Standard Out 1 **");
Console.Error.WriteLine("** Standard Error 1 **");
Console.Out.WriteLine("** Standard Out 2 **");
Console.Error.WriteLine("** Standard Error 2 **");
}
}
}