Installed product versions
- Visual Studio: [example 2017 Professional]
- This extension: [example 2.7.0]
Description
When I created boiler plate unit test, the using statement did not get added and I had to add in myself.
using System.Drawing;
Steps to recreate
-
Add this to code
var newLabel = new DevExpress.XtraEditors.LabelControl
{
Text = name,
Width = 150,
Font = font,
AutoSizeMode = LabelAutoSizeMode.Vertical,
AutoSize = true,
Dock = DockStyle.Left,
};
-
Create a Unit test
-
Font has red squiggle because using statement is missing.
Current behavior
using statement is missing because system.drawing is not referenced
Expected behavior
using System.Drawing; is included in the unit test file and Font doesn't have a missing reference.