2017-03-03 05:04:03 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-11-01 20:15:44 +00:00
|
|
|
using System;
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
namespace TestNamespace
|
|
|
|
{
|
|
|
|
public class VSTestXunitTests
|
|
|
|
{
|
|
|
|
[Fact]
|
|
|
|
public void VSTestXunitPassTest()
|
|
|
|
{
|
|
|
|
}
|
2016-11-01 20:26:42 +00:00
|
|
|
|
|
|
|
[Fact]
|
2016-11-01 20:15:44 +00:00
|
|
|
public void VSTestXunitFailTest()
|
|
|
|
{
|
2016-11-01 20:26:42 +00:00
|
|
|
Assert.Equal(1, 2);
|
2016-11-01 20:15:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|