Exemplo n.º 1
0
        // DESCRIPTION:
        // * Tests the numMixer object with the passed state.
        // * Pings the numMixer and prints returned values, if it succeeds.
        //
        // PRECONDITIONS:
        // * numMixerObj must not be null.
        // * numMixerObj must have a dataset containing the requested parity.
        //
        // POSTCONDITIONS:
        // * numMixer may no longer be active.


        static void testParity(numMixer numMixerObj,
                               numMixer.OutputController parity,
                               ref StreamWriter sw)
        {
            if (parity == numMixerObj.getControllerState())
            {
                writeHeader("PING " + numMixerObj.getControllerStateName(), ref sw);
                sw.WriteLine("State change failed (already set).");
            }
            else
            {
                numMixerObj.setControllerState(parity);
                writeHeader("PING " + numMixerObj.getControllerStateName(), ref sw);
                sw.WriteLine("State set to {0}.", numMixerObj.getControllerStateName());
            }
        }
Exemplo n.º 2
0
        // DESCRIPTION:
        // * Tests if the numMixer successfully changes to the specified parity.
        //
        // POSTCONDITIONS:
        // * numMixer may have changed parity.


        static void printStats(numMixer numMixerObj, ref StreamWriter sw)
        {
            writeHeader("STATS", ref sw);
            sw.WriteLine("Output controller state change count: {0}.",
                         numMixerObj.stateChangeCount());
            string state = "Output controller is ";

            if (numMixerObj.isActive())
            {
                state += "active";
            }
            else
            {
                state += "inactive.";
            }
            sw.WriteLine("{0}\r\n\r\n", state);
        }
Exemplo n.º 3
0
        // DESCRIPTION:
        // * Lets the client know how the state of the seerObj has changed.
        //
        // PRECONDITIONS:
        // * seerObj must not be null.

        static void pingMixer(numMixer numMixerObj,
                              numMixer.OutputController parity,
                              ref StreamWriter sw)
        {
            testParity(numMixerObj, parity, ref sw);

            const int SIZE = 10;

            int[] pingedData = new int[SIZE];
            if (numMixerObj.ping(ref pingedData))
            {
                sw.WriteLine("Ping successful ({0} elements requested):", SIZE);
                for (int i = 0; i < pingedData.Length; i++)
                {
                    sw.WriteLine(pingedData[i]);
                }
            }
            else
            {
                sw.WriteLine("Ping failed.");
            }

            sw.WriteLine("\r\n");
        }