Skip to content
Snippets Groups Projects
Commit df35724d authored by Claus Bruun Clausen's avatar Claus Bruun Clausen
Browse files

Merge branch 'PowerTubePower' into 'main'

test of constructor for powertube

See merge request !10
parents 4edf7c48 c3b6fe44
No related branches found
No related tags found
1 merge request!10test of constructor for powertube
Pipeline #194445 passed
......@@ -19,7 +19,20 @@ namespace Microwave.Test.Unit
uut = new PowerTube(output,700);
}
[TestCase(400, 500)]
[TestCase(500 , 500)]
[TestCase(700 , 700)]
[TestCase(800, 800)]
[TestCase(1000, 1000)]
[TestCase(1100, 500)]
public void PowerTube_Constructor_SetSize(int powerTube, int size)
{
PowerTube tempUut = new PowerTube(output, powerTube);
Assert.AreEqual(size, tempUut.PowerTubeSize);
}
[TestCase(1)]
[TestCase(50)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment