mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
21 lines
479 B
C#
21 lines
479 B
C#
using System;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using OpenAuth.Repository;
|
|
|
|
namespace OpenAuth.UnitTest
|
|
{
|
|
[TestClass]
|
|
public class DepartmentTest
|
|
{
|
|
[TestMethod]
|
|
public void TestAllDepartment()
|
|
{
|
|
OpenAuthDBContext context = new OpenAuthDBContext();
|
|
foreach (var department in context.Departments)
|
|
{
|
|
Console.WriteLine(department.FullName);
|
|
}
|
|
}
|
|
}
|
|
}
|