Upgrade to NUnit3

- Revise hard-coded paths for compatibility with new VS adapter
- Add utility functions for path generation
- Extract SHA1 computation from Save function
- Add ToJson helper function
- Don't save SHA1 in computed document
- Remove Asserts from CloseMatterControl, extend wait period
- Add TestAutomationConfig type replacing serialized Dictionary
This commit is contained in:
John Lewin 2016-09-20 09:39:57 -07:00
parent d0282730d8
commit ee52f24835
25 changed files with 251 additions and 274 deletions

View file

@ -27,23 +27,21 @@ of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using MatterHackers.Agg.UI;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using MatterHackers.Agg.UI;
using Newtonsoft.Json;
namespace MatterHackers.MatterControl.SlicerConfiguration
{
using Agg;
using Localizations;
using DataStorage;
using SettingsManagement;
using System.Collections.ObjectModel;
using System.Net;
using VersionManagement;
using System.Threading.Tasks;
using Agg;
using DataStorage;
using Localizations;
using SettingsManagement;
public class ProfileManager
{