initial oogynize check in _ this actually used to work!
This commit is contained in:
47
zEasyTest/Program.cs
Normal file
47
zEasyTest/Program.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using Foo.Platform;
|
||||
using Foo.Platform.Win32;
|
||||
using Foo.Settings;
|
||||
using Foo.DataAccessLayer;
|
||||
using Foo.DataAccessLayer.DataTypes;
|
||||
|
||||
|
||||
namespace zEasyTest
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
foreach (Win32Functions.RunningObject running in Win32Functions.GetRunningObjects())
|
||||
{
|
||||
if (running.name == "Doris")
|
||||
{
|
||||
int j = 5;
|
||||
j = j + 5;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// DataAccessLayer
|
||||
//DB.DeleteDefaultDB();
|
||||
//DataAccessLayer.TestData.TestData.FillDBWithTestData();
|
||||
|
||||
// Settings
|
||||
//Settings_Test.MockAroundWithSettings();
|
||||
|
||||
// WorkspaceMgr
|
||||
//WorkspaceMgr_Test.TestSingleArtifactLaunch();
|
||||
//WorkspaceMgr_Test.TestWorkspaceLaunch();
|
||||
//WorkspaceMgr_Test.TestConfiguration();
|
||||
|
||||
int i = 5;
|
||||
i = i - 5;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user