Reorganized project structure to separate backend process from frontend process.
This commit is contained in:
@ -1,9 +1,4 @@
|
||||
using ReportingServices.ViewModels.ProductionReport;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ReportingServices.Shared.ViewModels.ProductionReport;
|
||||
|
||||
namespace ReportingServices.Test
|
||||
{
|
||||
@ -14,8 +9,10 @@ namespace ReportingServices.Test
|
||||
public void SetRDSInfo_InputData_CalculatedAndStoresCorrectly()
|
||||
{
|
||||
// Arrange
|
||||
DailyReport rpt = new();
|
||||
rpt.CurrentEntries = TestingClass.ManualReportEntries;
|
||||
DailyReport rpt = new()
|
||||
{
|
||||
CurrentEntries = TestingClass.ManualReportEntries
|
||||
};
|
||||
Dictionary<string, List<int>> dualLayerReactors = new()
|
||||
{
|
||||
{ "ASM", new List<int>() { 24, 62 } },
|
||||
@ -40,8 +37,10 @@ namespace ReportingServices.Test
|
||||
public void SetReactorInfo_InputData_CalculatedAndStoresCorrectly()
|
||||
{
|
||||
// Arrange
|
||||
DailyReport rpt = new();
|
||||
rpt.CurrentEntries = TestingClass.ManualReportEntries;
|
||||
DailyReport rpt = new()
|
||||
{
|
||||
CurrentEntries = TestingClass.ManualReportEntries
|
||||
};
|
||||
int numberOfToolsWaferSize6IN = 11;
|
||||
int numberOfToolsWaferSize8IN = 46;
|
||||
int numberOfToolsWaferSize6INScheduled = 9;
|
||||
|
Reference in New Issue
Block a user