Complete the code to place a test point at the specified net.
AddTestPoint(net=[1])The test point should be placed on the power net VCC to monitor voltage.
Complete the code to set the test point size to 1.0 mm.
SetTestPointSize(size=[1])The standard test point size is set to 1.0 mm for easy probe access.
Fix the error in the test point placement code by completing the missing layer.
PlaceTestPoint(net="SIGNAL", layer=[1])
Test points are usually placed on the Top copper layer for easy access.
Fill both blanks to define a test point with a circular shape and 1.2 mm diameter.
DefineTestPoint(shape=[1], diameter=[2])
The test point should be circular with a diameter of 1.2 mm for standard probe compatibility.
Fill all three blanks to create a test point with net 'GND', on the bottom layer, and with a square shape.
CreateTestPoint(net=[1], layer=[2], shape=[3])
The test point is placed on the GND net, on the Bottom layer, and has a square shape for specific probing needs.
