Skip to content

Commit

Permalink
change MyWebTool with out static
Browse files Browse the repository at this point in the history
  • Loading branch information
lulianqi committed Sep 16, 2018
1 parent 587c0ec commit f0be8d7
Show file tree
Hide file tree
Showing 165 changed files with 106 additions and 73 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ Network Trash Folder
Temporary Items
.apdisk
*.pdb
*.cache
Binary file modified AutoTest/AutoTest.v12.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion AutoTest/AutoTest/AutoRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ private void pictureBox_tryTest1_Click(object sender, EventArgs e)
}
else
{
string myTempStr = MyCommonHelper.NetHelper.MyWebTool.MyHttp.SendData(tb_tryTestData.Text, "", "GET");
string myTempStr = (new MyCommonHelper.NetHelper.MyWebTool.MyHttp()).SendData(tb_tryTestData.Text, "", "GET");
trb_addRecord.AddDate( myTempStr, Color.Gray, true);
}
}
Expand Down
2 changes: 1 addition & 1 deletion AutoTest/AutoTest/TEST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ private void richTextBox1_TextChanged(object sender, EventArgs e)
private void button1_Click(object sender, EventArgs e)
{
//MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", 10000, "name", "filenmae", false, "testdata", null);
MyWebTool.MyHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "GET");
(new MyCommonHelper.NetHelper.MyWebTool.MyHttp()).SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "GET");
//mySP.openSerialPort("COM6", 57600);
}

Expand Down
Binary file modified AutoTest/AutoTest/bin/Debug/AutoTest.exe
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/CaseExecutiveActuator.dll
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/MyControl.dll
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/AutoTest/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/AutoTest/obj/Debug/AutoTest.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/CaseExecutiveActuator/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/CaseExecutiveActuator/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/CaseExecutiveActuator/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/CaseExecutiveActuator/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/ActiveMQTest/bin/Debug/ActiveMQTest.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/ActiveMQTest/bin/Debug/MyControl.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/ActiveMQTest/obj/Debug/ActiveMQTest.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/PipeHttpRuner/bin/Debug/MyControl.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ public ShanxiHuala_Interface()
InitializeComponent();
}

private MyCommonHelper.NetHelper.MyWebTool.MyHttp myHttp = new MyCommonHelper.NetHelper.MyWebTool.MyHttp();

private string tipInfoPath = System.Environment.CurrentDirectory + "\\interfaceData.xml";

private String host = "http://192.168.200.142:8091";
Expand Down Expand Up @@ -56,7 +58,7 @@ private void ShanxiHuala_Interface_Load(object sender, EventArgs e)

private void bt_oauth_Click(object sender, EventArgs e)
{
string response = MyWebTool.MyHttp.SendData(string.Format("{0}/oauth/token", host), "grant_type=client_credentials&scope=trust+read+write", "POST",
string response = myHttp.SendData(string.Format("{0}/oauth/token", host), "grant_type=client_credentials&scope=trust+read+write", "POST",
new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("Authorization", string.Format(" Basic {0}", Convert.ToBase64String(Encoding.UTF8.GetBytes(client_id + ":" + client_secret)))) });
string nowToken= GetAccess_token(response);
if(nowToken==null)
Expand Down Expand Up @@ -89,7 +91,7 @@ private void bt_send_Click(object sender, EventArgs e)
//<Api name="api">rtb_sendBody.Text.Replace("    "," ")</Api>
Stopwatch sw = new Stopwatch();
sw.Start();
string response = MyWebTool.MyHttp.SendData(string.Format("{0}{1}", tb_host.Text, tb_url.Text), rtb_sendBody.Text, cb_httpMethod.Text, myHeads);
string response = myHttp.SendData(string.Format("{0}{1}", tb_host.Text, tb_url.Text), rtb_sendBody.Text, cb_httpMethod.Text, myHeads);
if (nowNode!=null)
{
nowNode.InnerText = rtb_sendBody.Text;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/TLSTest/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/IndependentTool/TLSTest/bin/Debug/TLSTest.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/IndependentTool/TLSTest/obj/Debug/TLSTest.exe
Binary file not shown.
Binary file modified AutoTest/MyActiveMQHelper/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ F:\file\Code\GitHub\AutoTest\AutoTest\MyActiveMQHelper\bin\Debug\MyActiveMQHelpe
F:\file\Code\GitHub\AutoTest\AutoTest\MyActiveMQHelper\bin\Debug\MyActiveMQHelper.pdb
F:\file\Code\GitHub\AutoTest\AutoTest\MyActiveMQHelper\obj\Debug\MyActiveMQHelper.dll
F:\file\Code\GitHub\AutoTest\AutoTest\MyActiveMQHelper\obj\Debug\MyActiveMQHelper.pdb
D:\my\GitHub\AutoTest\AutoTest\MyActiveMQHelper\obj\Debug\MyActiveMQHelper.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified AutoTest/MyActiveMQHelper/obj/Debug/MyActiveMQHelper.dll
Binary file not shown.
1 change: 1 addition & 0 deletions AutoTest/MyCommonHelper/MyCommonHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<ItemGroup>
<Compile Include="EncryptionHelper\MyAES.cs" />
<Compile Include="EncryptionHelper\MyDES.cs" />
<Compile Include="EncryptionHelper\MyRC4.cs" />
<Compile Include="EncryptionHelper\MyRSA.cs" />
<Compile Include="EncryptionHelper\MyTripleDES.cs" />
<Compile Include="EncryptionHelper\MyXOR.cs" />
Expand Down
84 changes: 44 additions & 40 deletions AutoTest/MyCommonHelper/NetHelper/MyWebTool.cs

Large diffs are not rendered by default.

Binary file modified AutoTest/MyCommonHelper/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/MyCommonHelper/obj/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/MyControl/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/MyControl/bin/Debug/MyControl.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/MyControl/obj/Debug/MyControl.dll
Binary file not shown.
Binary file modified AutoTest/MyPipeHttpHelper/bin/Debug/MyPipeHttpHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/MyPipeHttpHelper/obj/Debug/MyPipeHttpHelper.dll
Binary file not shown.
Binary file modified AutoTest/MySqlHelper/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ F:\file\Code\GitHub\AutoTest\AutoTest\MySqlHelper\bin\Debug\MySqlHelper.dll
F:\file\Code\GitHub\AutoTest\AutoTest\MySqlHelper\bin\Debug\MySqlHelper.pdb
F:\file\Code\GitHub\AutoTest\AutoTest\MySqlHelper\obj\Debug\MySqlHelper.dll
F:\file\Code\GitHub\AutoTest\AutoTest\MySqlHelper\obj\Debug\MySqlHelper.pdb
D:\my\GitHub\AutoTest\AutoTest\MySqlHelper\obj\Debug\MySqlHelper.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified AutoTest/MySqlHelper/obj/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/MySshHelper/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/MySshHelper/bin/Debug/MySshHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/MySshHelper/obj/Debug/MySshHelper.dll
Binary file not shown.
Binary file modified AutoTest/MySvnHelper/bin/Debug/MySvnHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/MySvnHelper/obj/Debug/MySvnHelper.dll
Binary file not shown.
Binary file modified AutoTest/MyVoiceHelper/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/MyVoiceHelper/obj/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/CaseExecutiveActuator.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/MyControl.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file modified AutoTest/RemoteService/bin/Debug/RemoteService.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/RemoteService/obj/Debug/RemoteService.exe
Binary file not shown.
23 changes: 22 additions & 1 deletion AutoTest/Test/DemoForMyHelper/DemoForMyCommonHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
using System.Text;
using MyCommonHelper.EncryptionHelper;
using MyCommonHelper;
using MyCommonHelper.NetHelper;

namespace DemoForMyHelper
{
class DemoForMyCommonHelper
{
public static void Dotest()
public static void DotestForRC4()
{
Console.WriteLine(MyBytes.StringToHexString("test data for test !@#$%^&*()ZXCVBNM<QWERTYUIOASDFGHJK",Encoding.UTF8 ,HexaDecimal.hex16, ShowHexMode.space));
Console.WriteLine("RC4 Encrypt");
Expand All @@ -23,5 +24,25 @@ public static void Dotest()
Console.WriteLine(MyBytes.ByteToHexString(data2, HexaDecimal.hex16, ShowHexMode.space));
Console.WriteLine(Encoding.UTF8.GetString(data2));
}

public static void DotestForMyhttp()
{
MyWebTool.MyHttp myHttp = new MyWebTool.MyHttp(false, true);
myHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou1.txt");
myHttp.SendData("http://pv.sohu.com/cityjson", "ie=utf-8", "GET");
myHttp.SendData("http://pv.sohu.com/cityjson", "ie=utf-8", "POST");
myHttp.SendData("http://pv.sohu.com/cityjson", "ie=utf-8", "POST", new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("name", "DotestForMyhttp") }, null, null);

List<MyWebTool.HttpMultipartDate> hml = new List<MyWebTool.HttpMultipartDate>();
hml.Add(new MyWebTool.HttpMultipartDate("multipart name", "file name", null, false, "test data"));
hml.Add(new MyWebTool.HttpMultipartDate("multipart name", null ,"comtenttype", false, "test data"));

myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("name", "DotestForMyhttp") }, "body data", hml, null, null);

myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("name", "DotestForMyhttp") }, "body data", hml, "a=1&b=2&c=4", null);
hml.Add(new MyWebTool.HttpMultipartDate("multipart name", "file name", "comtenttype", true, @"D:\shou1.txt"));

myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", new List<KeyValuePair<string, string>>() { new KeyValuePair<string, string>("name", "DotestForMyhttp") }, "body data", hml, "a=1&b=2&c=4", null);
}
}
}
1 change: 1 addition & 0 deletions AutoTest/Test/DemoForMyHelper/DemoForMyHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="DemoForActionMQ.cs" />
<Compile Include="DemoForMyCommonHelper.cs" />
<Compile Include="DemoForMySerialPort.cs" />
<Compile Include="DemoForMySocket.cs" />
<Compile Include="DemoForMySql.cs" />
Expand Down
3 changes: 3 additions & 0 deletions AutoTest/Test/DemoForMyHelper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ class Program
{
static void Main(string[] args)
{
Console.WriteLine("key any to start");
Console.ReadKey();
//new DemoForMySvn().Run();
//new DemoForMySsh().RunShellTest();
//new DemoForMySql().RunTest();
//new DemoForMyVoice().Run();
//DemoForActionMQ.RunTest();
//new DemoForMySocket().StartTcp();
//new DemoForMySerialPort().MySerialPortStart();
DemoForMyCommonHelper.DotestForMyhttp();
new DemoForMyTelnet().Strat();
Console.WriteLine("end of demo");
Console.ReadKey();
Expand Down
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/DemoForMyHelper.exe
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MySshHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MySvnHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/DemoForMyHelper/obj/Debug/DemoForMyHelper.exe
Binary file not shown.
Binary file modified AutoTest/Test/TestForCLR/bin/Debug/TestForCLR.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/TestForCLR/obj/Debug/TestForCLR.exe
Binary file not shown.
34 changes: 18 additions & 16 deletions AutoTest/Test/TestForDefaultClass/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public void ThearTest(string str)
class Program
{
public delegate void Mydelegate();

static MyWebTool.MyHttp myHttp = new MyWebTool.MyHttp();
static void Main(string[] args)
{
Uri baseUri = new Uri("http://www.contoso.com/");
Expand Down Expand Up @@ -186,17 +188,17 @@ public static void RunMyHttpTest()
Console.WriteLine(string.Format("{0}\r\n{1}\r\n{2}\r\n{3}\r\n{4}", l1, l2, l3, l2 - l1, l3 - l2));
}
Console.ReadLine();
Console.WriteLine(MyWebTool.MyHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST",null,@"D:\shou.txt"));
Console.WriteLine(MyWebTool.MyHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(MyWebTool.MyHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(MyWebTool.MyHttp.SendData("https://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(MyWebTool.MyHttp.SendData("https://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(myHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(myHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(myHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(myHttp.SendData("https://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.WriteLine(myHttp.SendData("https://pv.sohu.com/cityjson?ie=utf-8", null, "POST", null, @"D:\shou.txt"));
Console.ReadLine();
MyWebTool.MyHttp.showResponseHeads = true;
Console.WriteLine(MyWebTool.MyHttp.SendData("http://www.baidu.com", null, "Get", null, @"D:\baidu.txt"));
myHttp.showResponseHeads = true;
Console.WriteLine(myHttp.SendData("http://www.baidu.com", null, "Get", null, @"D:\baidu.txt"));
Console.ReadLine();
MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", 10000, "name", "filenmae", false, "testdata", "a=1&b=2&c=3");
MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", 10000, "name", "filenmae", false, "testdata", null);
myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", 10000, "name", "filenmae", false, "testdata", "a=1&b=2&c=3");
myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", 10000, "name", "filenmae", false, "testdata", null);
List<MyWebTool.HttpMultipartDate> ntds = new List<MyWebTool.HttpMultipartDate>();
List<KeyValuePair<string, string>> heads = new List<KeyValuePair<string, string>>();
heads.Add(new KeyValuePair<string, string>("Hostx", "HttpPostData"));
Expand All @@ -208,13 +210,13 @@ public static void RunMyHttpTest()
ntds.Add(new MyWebTool.HttpMultipartDate(null, null, "type", false, null));
ntds.Add(new MyWebTool.HttpMultipartDate("name", "filename", null, true, @"C:\Users\administer\Desktop\new 2")); //@"C:\Users\cllq\Desktop\CSV\my.csv"

Console.WriteLine(MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", null, null, null, null, 1000, null));
Console.WriteLine(MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", null, null, ntds, null, 1000, null));
Console.WriteLine(MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", heads, "body", ntds, "a=1&b=2", 1000, Encoding.UTF8));
Console.WriteLine(myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", null, null, null, null, 1000, null));
Console.WriteLine(myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", null, null, ntds, null, 1000, null));
Console.WriteLine(myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", heads, "body", ntds, "a=1&b=2", 1000, Encoding.UTF8));
Console.ReadLine();
MyWebTool.MyHttp.showResponseHeads = true;
Console.WriteLine(MyWebTool.MyHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "Get"));
Console.WriteLine(MyWebTool.MyHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", heads, "body", ntds, "a=1&b=2", 1000, Encoding.UTF8));
myHttp.showResponseHeads = true;
Console.WriteLine(myHttp.SendData("http://pv.sohu.com/cityjson?ie=utf-8", null, "Get"));
Console.WriteLine(myHttp.HttpPostData("http://pv.sohu.com/cityjson?ie=utf-8", heads, "body", ntds, "a=1&b=2", 1000, Encoding.UTF8));
Console.ReadLine();
}

Expand Down Expand Up @@ -263,7 +265,7 @@ public static void RunTestForManualResetEvent()

for (int m = 0; m < 100 ;m++ )
{
System.Diagnostics.Debug.WriteLine(MyWebTool.MyHttp.SendData("http://wxv4.huala.com/huala/v3/seller/detail/562", null, "GET", null, null, manualResetEvent));
System.Diagnostics.Debug.WriteLine(myHttp.SendData("http://wxv4.huala.com/huala/v3/seller/detail/562", null, "GET", null, null, manualResetEvent));
}
Console.WriteLine("stop id is " + ((int)ob).ToString());
}), 0);
Expand Down
Binary file modified AutoTest/Test/TestForDefaultClass/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/TestForPipeHttp/bin/Debug/TestForPipeHttp.exe
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ F:\file\Code\GitHub\AutoTest\AutoTest\Test\TestForPipeHttp\bin\Debug\TestForPipe
F:\file\Code\GitHub\AutoTest\AutoTest\Test\TestForPipeHttp\obj\Debug\TestForPipeHttp.exe
F:\file\Code\GitHub\AutoTest\AutoTest\Test\TestForPipeHttp\obj\Debug\TestForPipeHttp.pdb
F:\file\Code\GitHub\AutoTest\AutoTest\Test\TestForPipeHttp\obj\Debug\TestForPipeHttp.csprojResolveAssemblyReference.cache
D:\my\GitHub\AutoTest\AutoTest\Test\TestForPipeHttp\obj\Debug\TestForPipeHttp.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified AutoTest/Test/TestForPipeHttp/obj/Debug/TestForPipeHttp.exe
Binary file not shown.
Binary file modified AutoTest/Test/TestForProxy/bin/Debug/TestForProxy.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/TestForProxy/obj/Debug/TestForProxy.exe
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/CaseExecutiveActuator.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/MyControl.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/bin/Debug/TestForUi.exe
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/obj/Debug/Interop.NetFwTypeLib.dll
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/TestForUi/obj/Debug/TestForUi.exe
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActua
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.Tool.MyExtensionMethods 生成存根: 类型已密封。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.Tool.CaseTool 生成存根: 类型已密封。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.ProtocolExecutive.AtHttpProtocol 生成存根: 类型已密封。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 <PrivateImplementationDetails>{BEC6E18E-7C4A-447D-98FB-93AC20D8F59D} 生成存根: 类型不受支持,因为存在内部限制。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 <PrivateImplementationDetails>{F0673B92-AA12-4141-BB1B-42B991A78F9C} 生成存根: 类型不受支持,因为存在内部限制。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.CaseActuator.CaseActionActuator+<>c__DisplayClass1 生成填充码: 类型不受支持,因为存在内部限制。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.CaseActuator.CaseActionActuator+ExecutiveAdditionalInfo 生成填充码: 类型对 exported or assembly(CaseExecutiveActuator.Fakes) 不可见。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.CaseActuator.CaseActionActuator+delegateActuatorParameterListEventHandler 生成填充码: 类型是一个委托。
Expand Down Expand Up @@ -88,4 +88,4 @@ D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActua
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.delegateBasicAnonymous 生成填充码: 类型是一个委托。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.ICaseProtocolExecution 生成填充码: 类型是一个接口。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 CaseExecutiveActuator.Tool.CaseTool+<>c__DisplayClass2 生成填充码: 类型不受支持,因为存在内部限制。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 <PrivateImplementationDetails>{BEC6E18E-7C4A-447D-98FB-93AC20D8F59D} 生成填充码: 类型不受支持,因为存在内部限制。
D:\my\GitHub\AutoTest\AutoTest\Test\UnitTestForAutoTest\Fakes\CaseExecutiveActuator.fakes : warning : 无法为 <PrivateImplementationDetails>{F0673B92-AA12-4141-BB1B-42B991A78F9C} 生成填充码: 类型不受支持,因为存在内部限制。
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/AutoTest.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/MyActiveMQHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/MyCommonHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/MyControl.dll
Binary file not shown.
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/MySqlHelper.dll
Binary file not shown.
Binary file modified AutoTest/Test/UnitTestForAutoTest/bin/Debug/MyVoiceHelper.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<ProjectGuid>7d5d5739-55e3-44d3-b6dc-17b26688eed7</ProjectGuid>
<ProjectGuid>cc579a50-324b-41a7-b7a5-fc0283aa235f</ProjectGuid>
<!-- update GUID here -->
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/TestForFiddler/bin/Debug/TestForFiddler.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/TestForFiddler/obj/Debug/TestForFiddler.exe
Binary file not shown.
Binary file modified AutoTest/TestForMergeSrt/bin/Debug/TestForMergeSrt.exe
Binary file not shown.
Binary file not shown.
Binary file modified AutoTest/TestForMergeSrt/obj/Debug/TestForMergeSrt.exe
Binary file not shown.
Loading

0 comments on commit f0be8d7

Please sign in to comment.