mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
16 lines
292 B
C#
16 lines
292 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
|
|
namespace Tests
|
|
{
|
|
[TestClass]
|
|
public class Global
|
|
{
|
|
[TestMethod]
|
|
public void Test()
|
|
{
|
|
Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory);
|
|
}
|
|
}
|
|
}
|