mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
23 lines
509 B
C#
23 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using RainmeterStudio.Business;
|
|
|
|
namespace RainmeterStudio.Tests.Business
|
|
{
|
|
[TestClass]
|
|
public class DocumentManagerTest
|
|
{
|
|
DocumentManager documentManager;
|
|
|
|
[TestInitialize]
|
|
public void Initialize()
|
|
{
|
|
documentManager = new DocumentManager();
|
|
}
|
|
}
|
|
}
|