This file contains hidden or 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
#!/usr/bin/bash | |
#Rrequired_parameters to be supplied | |
# - target_db | |
# - target_db_new | |
# - target_port | |
# - pg_user | |
# Produced output | |
# - List of all tables that were added (in new db, but not in old) | |
# - List of all tables that were removed ( in old db, but not in new) |
This file contains hidden or 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
/** | |
MIT License | |
Copyright (c) 2020 Matthias Dirickx | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or 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
package be.mdi.test.utils; | |
import java.util.HashMap; | |
public class TestContext { | |
/* | |
* TestContext Class Methods |
This file contains hidden or 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
/* | |
* PropertyManager | |
* | |
* Copyright (C) 2019 [email protected] | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* |
This file contains hidden or 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
using OpenQA.Selenium; | |
//Did not yet test this code | |
//I'll update if needed (and if I think of it), but this is the gist of it (pun intended) | |
namespace LocalStorageManager | |
{ | |
class LocalStorageManager | |
{ | |
private IJavaScriptExecutor js; |
This file contains hidden or 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
/** | |
@Author : Matthias Dirickx | |
@Description : Collecting statuses and copying them to a file - based on the 'set endpoint' script from Pradeep Bishnoi | |
https://learnsoapui.wordpress.com/2012/04/27/want-to-change-endpoInteger-url-in-a-projecttestsuitestestcases/ | |
* This script retrieves the static statuses from all items in a project and then exports those results to a simple html file. | |
* There is no extra css file or other stuff included. So you can happily pass around the html without worrying about making available additional resources. | |
*Assumptions: | |
* - there is a variable testDataPath | |
* - The variable testDataPath is set as JAVA String (backslashes are doubled because of escape function) |
This file contains hidden or 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
/* | |
Test utilities | |
Copyright (C) 2019 | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, |