public void TestConstructorReportingSessionEventArgs()
 {
     Ecell.Reporting.ReportingSession session = null;
     ReportingSessionEventArgs testReportingSessionEventArgs = new ReportingSessionEventArgs(session);
     Assert.IsNotNull(testReportingSessionEventArgs, "Constructor of type, ReportingSessionEventArgs failed to create instance.");
     Assert.AreEqual(session, testReportingSessionEventArgs.ReportingSession, "ReportingSession is unexpected value.");
 }
Example #2
0
 /// <summary>
 /// The event sequence on closing project.
 /// </summary>
 /// <param name="obj">ReportManager</param>
 /// <param name="e">ReportingSessionEventArgs</param>
 private void ReportManager_ReportingSessionStarted(object obj, ReportingSessionEventArgs e)
 {
     m_control.Clear(e.ReportingSession.Group);
 }
 public void SetUp()
 {
     Ecell.Reporting.ReportingSession session = null;
     _unitUnderTest = new ReportingSessionEventArgs(session);
 }
 public void TearDown()
 {
     _unitUnderTest = null;
 }
Example #5
0
 void _unitUnderTest_ReportingSessionStarted(object o, ReportingSessionEventArgs e)
 {
 }