Skip to content

Instantly share code, notes, and snippets.

@tsubakimoto
Created February 24, 2018 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubakimoto/df02e647183dc95966dafec6ca1a5d73 to your computer and use it in GitHub Desktop.
Save tsubakimoto/df02e647183dc95966dafec6ca1a5d73 to your computer and use it in GitHub Desktop.
using dotnet_ci_sample;
using System;
using Xunit;
namespace test
{
public class UnitTest1
{
[Fact]
public void SayTest()
{
var expected = "Hello yuta!!";
var actual = MyClass.Say("yuta");
Assert.Equal(expected, actual);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment