using System.Collections.Generic; namespace Tests { //store the passwords used in integration test. public static class Secrets { // the names of the grid service, defined in the friendlyname attribute in the grids.xml file. public static List _gridFriendlyNames = new List() { "Second Life (agni)", "Metropolis Metaversum", "Local Host" // "https://login.agni.lindenlab.com/cgi-bin/login.cgi", // "login.metro.land" }; // user name public static List GridUsers = new List() { "***REMOVED*** Resident", "Raindrop Raindrop", "Test User" }; // password public static List GridPass = new List() { "I am a little ", "silly to put the password ", "into source control " }; } }