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