A simple API for elecronic typology,a set of electronic components that are connected together.
API Methods:
-
Read a topology from A Json file in the data directory given file name
API.ReadTopology(fileName);
-
Write a topology to A Json file in the out directory given its ID
API.WriteTopology(topologyID);
-
Get All Topologies in the memory
API.GetAllTopology();
-
Delete a topology from the memory given its ID
API.DeleteTopologyByID(topologyID);
-
Get all devices in a specific topology given topology's ID
API.GetDevices(topologyID);
-
Get all devices in a specific topology and connected to a specific node given topology's ID and node's ID
API.GetTopologyByConnectedNodes(topologyID,nodeID)
- Java
- Junit
- Allure-Reporter