Rev | Line | |
---|
[1146] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using NUnit.Framework;
|
---|
| 5 |
|
---|
| 6 | namespace IndianHealthService.BMXNet.Tests
|
---|
| 7 | {
|
---|
| 8 | public class BmxTestFixture
|
---|
| 9 | {
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | private RemoteSession _session = null;
|
---|
| 13 |
|
---|
| 14 | public RemoteSession Session
|
---|
| 15 | {
|
---|
| 16 | get { return _session; }
|
---|
| 17 | set { _session = value; }
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | private String _fetchTableString = "BMX ADO SS^BMX TEST FILE^^~~~~~";
|
---|
| 21 |
|
---|
| 22 | public String FetchTableString
|
---|
| 23 | {
|
---|
| 24 | get { return _fetchTableString; }
|
---|
| 25 | set { _fetchTableString = value; }
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | [SetUp]
|
---|
| 29 | public void LoginToRpms()
|
---|
| 30 | {
|
---|
| 31 |
|
---|
| 32 | //` Broker = connect.Broker;
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | [TearDown]
|
---|
| 36 | public void LogoutOfRpms()
|
---|
| 37 | {
|
---|
| 38 |
|
---|
| 39 |
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 |
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.