38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
using NUnit.Framework;
|
|
using StructureHelper.Windows.Graphs;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
using StructureHelperCommon.Models.Parameters;
|
|
|
|
namespace StructureHelperTests.ViewModelTests
|
|
{
|
|
internal class GraphViewModelTest
|
|
{
|
|
[TestCase(2, 3)]
|
|
[TestCase(2, 4)]
|
|
[TestCase(3, 3)]
|
|
public void RunShouldPass(int rowCount, int columnCount)
|
|
{
|
|
//Arrange
|
|
var labels = new List<string>();
|
|
for (int i = 0; i < columnCount; i++)
|
|
{
|
|
labels.Add($"Column{i}");
|
|
}
|
|
var array = new ArrayParameter<double>(rowCount, columnCount, labels);
|
|
for (int i = 0; i < columnCount; i++)
|
|
{
|
|
for (int j = 0; j < rowCount; j++)
|
|
{
|
|
array.Data[j, i] = i + 2 * j;
|
|
}
|
|
}
|
|
//Act
|
|
var vm = new GraphViewModel(array);
|
|
//Assert
|
|
Assert.That(vm, Is.Not.Null);
|
|
Assert.That(vm.Series[0].XItems.Collection.Count(), Is.EqualTo(columnCount));
|
|
Assert.That(vm.Series[0].YItems.CollectionItems.Count(), Is.EqualTo(columnCount));
|
|
}
|
|
}
|
|
}
|