This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfc5dac
commit f0f62ec
Showing
14 changed files
with
357 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using QuickGraph; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using QuickGraph; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using GraphSharp; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using GraphSharp; | ||
using QuickGraph; | ||
using QuickGraph.Serialization; | ||
using System; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using System; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Linq; | ||
|
27 changes: 26 additions & 1 deletion
27
Source/SEViz.Integration/Helpers/Converters/EdgeColorToForegroundColorConverter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using SEViz.Common.Model; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using SEViz.Common.Model; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Drawing; | ||
|
27 changes: 26 additions & 1 deletion
27
Source/SEViz.Integration/Helpers/Converters/NodeBorderToBorderPaddingConverter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using SEViz.Common; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using SEViz.Common; | ||
using SEViz.Common.Model; | ||
using System; | ||
using System.Collections.Generic; | ||
|
27 changes: 26 additions & 1 deletion
27
Source/SEViz.Integration/Helpers/Converters/NodeBorderToBorderThicknessConverter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using SEViz.Common; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using SEViz.Common; | ||
using SEViz.Common.Model; | ||
using System; | ||
using System.Collections.Generic; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using SEViz.Common; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using SEViz.Common; | ||
using SEViz.Common.Model; | ||
using System; | ||
using System.Collections.Generic; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
//------------------------------------------------------------------------------ | ||
// <copyright file="ShowInSEVizCommand.cs" company="Company"> | ||
// Copyright (c) Company. All rights reserved. | ||
// </copyright> | ||
//------------------------------------------------------------------------------ | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using System; | ||
using System.ComponentModel.Design; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
using GraphSharp.Controls; | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using GraphSharp.Controls; | ||
using Microsoft.VisualStudio; | ||
using Microsoft.VisualStudio.Shell.Interop; | ||
using SEViz.Common; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
//------------------------------------------------------------------------------ | ||
// <copyright file="ViewerWindowCommand.cs" company="Company"> | ||
// Copyright (c) Company. All rights reserved. | ||
// </copyright> | ||
//------------------------------------------------------------------------------ | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
using System; | ||
using System.ComponentModel.Design; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,30 @@ | ||
<UserControl x:Class="SEViz.Integration.ViewerWindowControl" | ||
<!-- | ||
* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
* | ||
--> | ||
<UserControl x:Class="SEViz.Integration.ViewerWindowControl" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
//------------------------------------------------------------------------------ | ||
// <copyright file="ViewerWindowControl.xaml.cs" company="Company"> | ||
// Copyright (c) Company. All rights reserved. | ||
// </copyright> | ||
//------------------------------------------------------------------------------ | ||
/* | ||
* SEViz - Symbolic Execution VIsualiZation | ||
* | ||
* SEViz is a tool, which can support the test generation process by | ||
* visualizing the symbolic execution in a directed graph. | ||
* | ||
* Authors: Dávid Honfi <[email protected]>, Zoltán Micskei | ||
* <[email protected]>, András Vörös <[email protected]> | ||
* | ||
* Copyright 2015 Budapest University of Technology and Economics (BME) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
* | ||
*/ | ||
|
||
namespace SEViz.Integration | ||
{ | ||
|
Oops, something went wrong.